From 8fc2e93fd9edfe17e541065c76c446b78c29e6e5 Mon Sep 17 00:00:00 2001 From: Jonathan Berger Date: Wed, 5 Sep 2018 13:25:21 -0700 Subject: [PATCH] Improve language for required properties (#13) The existing language is a bit awkward. This change reads more cleanly, naturally, and accurately. --- pages/06.data-sources/01.formats/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/06.data-sources/01.formats/docs.md b/pages/06.data-sources/01.formats/docs.md index befadeabdf..73d044b22e 100644 --- a/pages/06.data-sources/01.formats/docs.md +++ b/pages/06.data-sources/01.formats/docs.md @@ -24,7 +24,7 @@ Select2 can render programmatically supplied data from an array or remote data s } ``` -Each object should contain, _at a minimum_, an `id` and a `text` property. Any additional parameters passed in with data objects will be included on the data objects that Select2 exposes. +Select2 requires that each object contain an `id` and a `text` property. Additional parameters passed in with data objects will be included on the data objects that Select2 exposes. The response object may also contain pagination data, if you would like to use the "infinite scroll" feature. This should be specified under the `pagination` key.