diff --git a/docs/rules/no-render-return-value.md b/docs/rules/no-render-return-value.md
index d028ec094f..0337962368 100644
--- a/docs/rules/no-render-return-value.md
+++ b/docs/rules/no-render-return-value.md
@@ -8,14 +8,14 @@ Source: [React Top-Level API documentation](http://facebook.github.io/react/docs
This rule will warn you if you try to use the `ReactDOM.render()` return value.
-The following pattern is considered warning:
+The following pattern is considered a warning:
```js
const inst = ReactDOM.render(, document.body);
doSomethingWithInst(inst);
```
-The following patterns are not considered warning:
+The following patterns are not considered warnings:
```js
ReactDOM.render(, document.body);