diff --git a/docs/02.2-jsx-spread.md b/docs/02.2-jsx-spread.md index 4cafa8cc..a4b26782 100644 --- a/docs/02.2-jsx-spread.md +++ b/docs/02.2-jsx-spread.md @@ -49,4 +49,4 @@ You can use this multiple times or combine it with other attributes. The specifi ## What's with the weird `...` notation? -The `...` operator (or spread operator) is already supported for [arrays in ES6](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator). There is also an ES7 proposal for [Object Rest and Spread Properties](https://github.com/sebmarkbage/ecmascript-rest-spread). We're taking advantage of these supported and developing standards in order to provide a cleaner syntax in JSX. +The `...` operator (or spread operator) is already supported for [arrays in ES6](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator). There is also an ECMAScript proposal for [Object Rest and Spread Properties](https://github.com/sebmarkbage/ecmascript-rest-spread). We're taking advantage of these supported and developing standards in order to provide a cleaner syntax in JSX. diff --git a/docs/06-transferring-props.md b/docs/06-transferring-props.md index 0bac12a1..972b567c 100644 --- a/docs/06-transferring-props.md +++ b/docs/06-transferring-props.md @@ -20,7 +20,7 @@ If you don't use JSX, you can use any object helper such as ES6 `Object.assign` React.createElement(Component, Object.assign({}, this.props, { more: 'values' })); ``` -The rest of this tutorial explains best practices. It uses JSX and experimental ES7 syntax. +The rest of this tutorial explains best practices. It uses JSX and experimental ECMAScript syntax. ## Manual Transfer @@ -132,7 +132,7 @@ var FancyCheckbox = React.createClass({ Rest properties allow you to extract the remaining properties from an object into a new object. It excludes every other property listed in the destructuring pattern. -This is an experimental implementation of an [ES7 proposal](https://github.com/sebmarkbage/ecmascript-rest-spread). +This is an experimental implementation of an [ECMAScript proposal](https://github.com/sebmarkbage/ecmascript-rest-spread). ```javascript var { x, y, ...z } = { x: 1, y: 2, a: 3, b: 4 };