We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
jsx-eslint
ljharb
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
2 parents 798f2ca + 4a05b6f commit 00553b5Copy full SHA for 00553b5
docs/rules/no-render-return-value.md
@@ -8,14 +8,14 @@ Source: [React Top-Level API documentation](http://facebook.github.io/react/docs
8
9
This rule will warn you if you try to use the `ReactDOM.render()` return value.
10
11
-The following pattern is considered warning:
+The following pattern is considered a warning:
12
13
```js
14
const inst = ReactDOM.render(<App />, document.body);
15
doSomethingWithInst(inst);
16
```
17
18
-The following patterns are not considered warning:
+The following patterns are not considered warnings:
19
20
21
ReactDOM.render(<App ref={doSomethingWithInst} />, document.body);
0 commit comments