From a21b82d15158ea11b1ebd8c680772968836990b3 Mon Sep 17 00:00:00 2001 From: Chase Adams Date: Mon, 11 May 2015 13:29:14 -0700 Subject: [PATCH] Change object typo to objects --- docs/docs/ref-09-glossary.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/ref-09-glossary.md b/docs/docs/ref-09-glossary.md index 97b3bf10f5..a1cd3d96d5 100644 --- a/docs/docs/ref-09-glossary.md +++ b/docs/docs/ref-09-glossary.md @@ -15,7 +15,7 @@ In React's terminology, there are five core types that are important to distingu The primary type in React is the `ReactElement`. It has four properties: `type`, `props`, `key` and `ref`. It has no methods and nothing on the prototype. -You can create one of these object through `React.createElement`. +You can create one of these objects through `React.createElement`. ```javascript var root = React.createElement('div');