aboutsummaryrefslogtreecommitdiffstats
path: root/documentation/datamodel
diff options
context:
space:
mode:
authorHenri Sara <hesara@vaadin.com>2016-08-09 10:49:25 +0300
committerVaadin Code Review <review@vaadin.com>2016-08-09 10:25:48 +0000
commitf696db8036fc520f3bd97ef75e933ff8b45e1ce2 (patch)
treed8b7912fac3652c657f7548658aa6f46d34a536a /documentation/datamodel
parentd5e79088f59ec369fccf8f0bede0e57d067d5a29 (diff)
downloadvaadin-framework-f696db8036fc520f3bd97ef75e933ff8b45e1ce2.tar.gz
vaadin-framework-f696db8036fc520f3bd97ef75e933ff8b45e1ce2.zip
BoV: Fix a language issue for Listing
Change-Id: I3699ecca45775335308d90a2c1f79b9a1244dc76
Diffstat (limited to 'documentation/datamodel')
-rw-r--r--documentation/datamodel/datamodel-datasources.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/datamodel/datamodel-datasources.asciidoc b/documentation/datamodel/datamodel-datasources.asciidoc
index 9c657d7ffe..ddc78bc6cf 100644
--- a/documentation/datamodel/datamodel-datasources.asciidoc
+++ b/documentation/datamodel/datamodel-datasources.asciidoc
@@ -51,7 +51,7 @@ List<Person> persons = Arrays.asList(
grid.setItems(persons);
----
-Listing components that allow the user to control in which order the items are displayed is automatically able to sort data by any property as long as the property type implements [classname]#Comparable#.
+Listing components that allow the user to control the display order of the items are automatically able to sort data by any property as long as the property type implements [classname]#Comparable#.
We can also define a custom [classname]#Comparator# if we want to customize the way a specific column is sorted. The comparator can either be based on the item instances or on the values of the property that is being shown.