From 3cf150cdf331774c2a4032c73ee2a63014b5f730 Mon Sep 17 00:00:00 2001 From: Free Kashmir!!! Date: Mon, 18 Apr 2022 12:17:17 +0500 Subject: [PATCH] Fix broken link The link to "async / await" was broken. Replaced the "tc39.github.io" link with the MDN's link. --- docs/guide/actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/actions.md b/docs/guide/actions.md index 5a9452c90..44833b0f1 100644 --- a/docs/guide/actions.md +++ b/docs/guide/actions.md @@ -161,7 +161,7 @@ actions: { } ``` -Finally, if we make use of [async / await](https://tc39.github.io/ecmascript-asyncawait/), we can compose our actions like this: +Finally, if we make use of [async / await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function), we can compose our actions like this: ``` js // assuming `getData()` and `getOtherData()` return Promises