diff --git a/docs/syntax.md b/docs/syntax.md
index bb477e9a..570f9338 100644
--- a/docs/syntax.md
+++ b/docs/syntax.md
@@ -37,7 +37,7 @@ var Nav;
// Input (JSX):
var app = ;
// Output (JS):
-var app = Nav({color:'blue'});
+var app = Nav({color:'blue'}, null);
```
Notice that in order to use ``, the `Nav` variable must be in scope.
@@ -49,7 +49,7 @@ var Nav, Profile;
// Input (JSX):
var app = ;
// Output (JS):
-var app = Nav({color:'blue'}, Profile({}, 'click'));
+var app = Nav({color:'blue'}, Profile(null, 'click'));
```
Use the [JSX Compiler](/react/jsx-compiler.html) to try out JSX and see how it
@@ -114,7 +114,7 @@ var Nav;
// Input (JSX):
var tree = ;
// Output (JS):
-var tree = Nav({}, React.DOM.span({}));
+var tree = Nav(null, React.DOM.span(null, null));
```
> Remember:
@@ -145,7 +145,7 @@ Likewise, JavaScript expressions may be used to express children:
// Input (JSX):
var content = {window.isLoggedIn ? : };
// Output (JS):
-var content = Container({}, window.isLoggedIn ? : );
+var content = Container(null, window.isLoggedIn ? Nav(null, null) : Login(null, null));
```
## Tooling