]> source.dussan.org Git - vaadin-framework.git/commitdiff
Improved English in line 17 (#8054)
authorJuha Seppänen <juha@vaadin.com>
Tue, 20 Dec 2016 07:09:58 +0000 (09:09 +0200)
committerLeif Åstrand <legioth@gmail.com>
Tue, 20 Dec 2016 07:09:58 +0000 (09:09 +0200)
* Improved English in line 17

Changed

"There is only one Binder instance per form and it is used for all fields in that form" into
"There is only one Binder instance for each form and it is used for all fields in that form"

documentation/datamodel/datamodel-forms.asciidoc

index 893b995d3750ddb47961b326cd9ee324e2cfaebd..47974986d70cc3290beb615ec8315fc66e8a2305 100644 (file)
@@ -14,7 +14,7 @@ Vaadin Framework provides a [classname]#Binder# class that the developer can use
 [classname]#Binder# takes care of reading values from the business object and converting the user's data between the format expected by the business object and the format expected by the field.
 The input entered by the user can also be validated, and the current validation status can be presented to the user in different ways.
 
-The first step to binding fields for a form is to create a [classname]#Binder# and bind some input fields. There is only one [classname]#Binder# instance per form and it is used for all fields in that form.
+The first step to binding fields for a form is to create a [classname]#Binder# and bind some input fields. There is only one [classname]#Binder# instance for each form and it is used for all fields in that form.
 
 [source, java]
 ----