From: Juha Seppänen Date: Tue, 20 Dec 2016 07:09:58 +0000 (+0200) Subject: Improved English in line 17 (#8054) X-Git-Tag: 8.0.0.beta2~147 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5be4fb00cc648816ea1695aa3a30a646d47cd567;p=vaadin-framework.git 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" --- 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] ----