Skip to content

Commit 00553b5

Browse files
authoredOct 14, 2016
Merge pull request #910 from Wilfred/patch-3
Minor grammar fix
·
v7.37.5v6.5.0
2 parents 798f2ca + 4a05b6f commit 00553b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/rules/no-render-return-value.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ Source: [React Top-Level API documentation](http://facebook.github.io/react/docs
88

99
This rule will warn you if you try to use the `ReactDOM.render()` return value.
1010

11-
The following pattern is considered warning:
11+
The following pattern is considered a warning:
1212

1313
```js
1414
const inst = ReactDOM.render(<App />, document.body);
1515
doSomethingWithInst(inst);
1616
```
1717

18-
The following patterns are not considered warning:
18+
The following patterns are not considered warnings:
1919

2020
```js
2121
ReactDOM.render(<App ref={doSomethingWithInst} />, document.body);

0 commit comments

Comments
 (0)
Please sign in to comment.