Skip to content

Commit 7fef61b

Browse files
committed
Update documentation
1 parent cec8001 commit 7fef61b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/rules/display-name.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var Hello = React.createClass({
1414
});
1515
```
1616

17-
The following patterns are not warnings:
17+
The following patterns are not considered warnings:
1818

1919
```js
2020
var Hello = React.createClass({

docs/rules/no-multi-comp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var HelloJohn = React.createClass({
2020
});
2121
```
2222

23-
The following patterns are not warnings:
23+
The following patterns are not considered warnings:
2424

2525
```js
2626
var Hello = require('./components/Hello');

docs/rules/prop-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var Hello = React.createClass({
1616
});
1717
```
1818

19-
The following patterns are not warnings:
19+
The following patterns are not considered warnings:
2020

2121
```js
2222
var Hello = React.createClass({

docs/rules/self-closing-comp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The following patterns are considered warnings:
1010
var HelloJohn = <Hello name="John"></Hello>;
1111
```
1212

13-
The following patterns are not warnings:
13+
The following patterns are not considered warnings:
1414

1515
```js
1616
var contentContainer = <div className="content"></div>;

docs/rules/wrap-multilines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var Hello = React.createClass({
1616
});
1717
```
1818

19-
The following patterns are not warnings:
19+
The following patterns are not considered warnings:
2020

2121
```js
2222
var singleLineJSX = <p>Hello</p>

0 commit comments

Comments
 (0)