From 09ce6b12cac0b253c0d1a138a4e01216ef350046 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Sch=C3=A4fer?= Date: Sat, 28 Jul 2018 10:04:20 +0200 Subject: [PATCH] Fix typo in user guide #359 --- docs/parameterized_steps.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/parameterized_steps.adoc b/docs/parameterized_steps.adoc index 5c7f461018..b371a308f0 100644 --- a/docs/parameterized_steps.adoc +++ b/docs/parameterized_steps.adoc @@ -172,7 +172,7 @@ Then you can define a step method as follows: [source,java] ---- -public SELF the_coffee_price_$_is_registered( @POJOFormat(fieldsFormat = { +public SELF the_coffee_price_$_is_registered( @POJOFormat(fieldFormats = { @NamedFormat( name = "name", customFormatAnnotation = Quoted.class), @NamedFormat( name = "price_in_EUR", format = @Format( value = PrintfFormatter.class, args = "%s EUR" ) ) } ) CoffeeWithPrice price ) {