diff --git a/_posts/2014-07-13-react-v0.11-rc1.md b/_posts/2014-07-13-react-v0.11-rc1.md
index 9f300a9f..17417196 100644
--- a/_posts/2014-07-13-react-v0.11-rc1.md
+++ b/_posts/2014-07-13-react-v0.11-rc1.md
@@ -29,7 +29,7 @@ Starting in React 0.11, `getDefaultProps()` is called only once when `React.crea
## Rendering to `null`
-Since React's release, people have been using work arounds to "render nothing". Usually this means returning an empty `
` or ` `. Some people even got clever and started returning ` ` to avoid extraneous DOM nodes. We finally provided a "blessed" solution that allows developers to writing meaningful code. Returning `null` in an explicit indication to React that you do not want anything rendered. Behind the scenes we make this work with a `` element, though in the future we hope to not put anything in the document. In the mean time, `` elements do not affect layout in any way, so you can feel safe using `null` today!
+Since React's release, people have been using work arounds to "render nothing". Usually this means returning an empty `
` or ` `. Some people even got clever and started returning ` ` to avoid extraneous DOM nodes. We finally provided a "blessed" solution that allows developers to write meaningful code. Returning `null` is an explicit indication to React that you do not want anything rendered. Behind the scenes we make this work with a `` element, though in the future we hope to not put anything in the document. In the mean time, `` elements do not affect layout in any way, so you can feel safe using `null` today!
```js
// Before
diff --git a/_posts/2014-07-17-react-v0.11.md b/_posts/2014-07-17-react-v0.11.md
index 802cbd07..93909208 100644
--- a/_posts/2014-07-17-react-v0.11.md
+++ b/_posts/2014-07-17-react-v0.11.md
@@ -32,7 +32,7 @@ Starting in React 0.11, `getDefaultProps()` is called only once when `React.crea
## Rendering to `null`
-Since React's release, people have been using work arounds to "render nothing". Usually this means returning an empty `
` or ` `. Some people even got clever and started returning ` ` to avoid extraneous DOM nodes. We finally provided a "blessed" solution that allows developers to writing meaningful code. Returning `null` in an explicit indication to React that you do not want anything rendered. Behind the scenes we make this work with a `` element, though in the future we hope to not put anything in the document. In the mean time, `` elements do not affect layout in any way, so you can feel safe using `null` today!
+Since React's release, people have been using work arounds to "render nothing". Usually this means returning an empty `
` or ` `. Some people even got clever and started returning ` ` to avoid extraneous DOM nodes. We finally provided a "blessed" solution that allows developers to write meaningful code. Returning `null` is an explicit indication to React that you do not want anything rendered. Behind the scenes we make this work with a `` element, though in the future we hope to not put anything in the document. In the mean time, `` elements do not affect layout in any way, so you can feel safe using `null` today!
```js
// Before