async/await is not part of ES7

Summary:
I might be a little pedantic here but it is what it is ;-)
Closes https://github.com/facebook/react-native/pull/8783

Differential Revision: D3561962

Pulled By: hramos

fbshipit-source-id: b44af2c1a2586bb6f8b2460631b8fe208b925c4d
This commit is contained in:
Tim Jacobi 2016-07-14 10:12:54 -07:00 committed by Facebook Github Bot 1
parent e9f53eee2c
commit 7d2b5714af
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ Networking is an inherently asynchronous operation. Fetch methods will return a
}
```
You can also use ES7's `async`/`await` syntax in React Native app:
You can also use the proposed ES2017 `async`/`await` syntax in a React Native app:
```js
async getMoviesFromApi() {