From 05ac83c323260e68ae1e73ae4621b1f0d2d2af36 Mon Sep 17 00:00:00 2001 From: Oliver Joseph Ash Date: Mon, 2 Sep 2019 21:34:39 +0100 Subject: [PATCH] Correct usage of word "entities" in documentation (#416) --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 89d8b219..e08e22ab 100644 --- a/docs/api.md +++ b/docs/api.md @@ -76,7 +76,7 @@ const denormalizedData = denormalize({ users: [1, 2] }, mySchema, entities); ### `Array(definition, schemaAttribute)` -Creates a schema to normalize an array of entities. If the input value is an `Object` instead of an `Array`, the normalized result will be an `Array` of the `Object`'s values. +Creates a schema to normalize an array of schemas. If the input value is an `Object` instead of an `Array`, the normalized result will be an `Array` of the `Object`'s values. _Note: The same behavior can be defined with shorthand syntax: `[ mySchema ]`_