From 5187f9c6503e1fde03a2910e9377fe1354811865 Mon Sep 17 00:00:00 2001 From: Preston Parry Date: Tue, 27 Jan 2015 11:04:21 -0800 Subject: [PATCH] Rewording for clarity --- docs/02.1-jsx-in-depth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02.1-jsx-in-depth.md b/docs/02.1-jsx-in-depth.md index 7394198e..e4ba66e0 100644 --- a/docs/02.1-jsx-in-depth.md +++ b/docs/02.1-jsx-in-depth.md @@ -47,7 +47,7 @@ React's JSX uses the upper vs. lower case convention to distinguish between loca ## The Transform -React JSX transforms from an XML-like syntax into native JavaScript. XML elements, attributes and children are transformed into arguments to `React.createElement`. +React JSX transforms from an XML-like syntax into native JavaScript. XML elements, attributes and children are transformed into arguments that are passed to `React.createElement`. ```javascript var Nav;