From df1a6d5beddb94d5a6132f69ac89d0bebf7d5730 Mon Sep 17 00:00:00 2001 From: Gabriele Petronella Date: Sun, 11 Oct 2015 00:47:12 +0200 Subject: [PATCH] Add missing semicolon in example and remove extra one --- docs/JavaScriptEnvironment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/JavaScriptEnvironment.md b/docs/JavaScriptEnvironment.md index e4a71ed0b..dcd866156 100644 --- a/docs/JavaScriptEnvironment.md +++ b/docs/JavaScriptEnvironment.md @@ -47,4 +47,4 @@ ES7 * [Object Spread](https://github.com/sebmarkbage/ecmascript-rest-spread): `var extended = { ...obj, a: 10 };` * [Function Trailing Comma](https://github.com/jeffmo/es-trailing-function-commas): `function f(a, b, c,) { }` -* [Async Functions](https://github.com/tc39/ecmascript-asyncawait): `async function doStuffAsync() { const foo = await doOtherStuffAsync() };`; +* [Async Functions](https://github.com/tc39/ecmascript-asyncawait): `async function doStuffAsync() { const foo = await doOtherStuffAsync(); }`;