Skip to content

Commit

Permalink
Fix outdated link of async functions
Browse files Browse the repository at this point in the history
  • Loading branch information
barnett617 committed Aug 14, 2024
1 parent 2e321a0 commit d42dbfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blog/fast-async.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function handler() {
}
```

Even more recently, JavaScript gained support for [async functions](https://developers.google.com/web/fundamentals/primers/async-functions). The above asynchronous code can now be written in a way that looks very similar to synchronous code:
Even more recently, JavaScript gained support for [async functions](https://web.dev/articles/async-functions). The above asynchronous code can now be written in a way that looks very similar to synchronous code:

```js
async function handler() {
Expand Down

0 comments on commit d42dbfe

Please sign in to comment.