Skip to content

Commit 6d9a63a

Browse files
committed
Update README.md
1 parent 855db33 commit 6d9a63a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Then, include these scripts into your html file:
3535
</body>
3636
```
3737

38-
A pure example without using JSX syntax:
38+
A simple example without using JSX syntax:
3939
```js
4040
var MySortable = React.createClass({
4141
displayName: 'MySortable',
@@ -54,8 +54,8 @@ var MySortable = React.createClass({
5454
});
5555

5656
ReactDOM.render(
57-
React.createElement(SortableMixin.default({ ref: 'list', model: 'items' })(MySortable), null),
58-
document.getElementById('container')
57+
React.createElement(SortableMixin.default({ ref: 'list', model: 'items' })(MySortable), null),
58+
document.getElementById('container')
5959
);
6060
```
6161

0 commit comments

Comments
 (0)