aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuha Seppänen <juha@vaadin.com>2016-12-20 09:09:58 +0200
committerLeif Åstrand <legioth@gmail.com>2016-12-20 09:09:58 +0200
commit5be4fb00cc648816ea1695aa3a30a646d47cd567 (patch)
treeaa53ef23240859cf0cbcdffd60541fab0d0e31b5
parent9784301cbc94d0463d6007579e947d552cd753a6 (diff)
downloadvaadin-framework-5be4fb00cc648816ea1695aa3a30a646d47cd567.tar.gz
vaadin-framework-5be4fb00cc648816ea1695aa3a30a646d47cd567.zip
Improved English in line 17 (#8054)
* 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"
-rw-r--r--documentation/datamodel/datamodel-forms.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/datamodel/datamodel-forms.asciidoc b/documentation/datamodel/datamodel-forms.asciidoc
index 893b995d37..47974986d7 100644
--- a/documentation/datamodel/datamodel-forms.asciidoc
+++ b/documentation/datamodel/datamodel-forms.asciidoc
@@ -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]
----