diff options
author | Tobias Nießen <tniessen@users.noreply.github.com> | 2021-04-09 16:16:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 23:16:33 +0900 |
commit | cd0560210aa0ac9dc9772cdddcb1c5a59cef1815 (patch) | |
tree | f1329f63cbfb99ebb4188cb25996db3553b1cdbb /docs/examples | |
parent | a87da4b19a6da67dde15d1d0ceefaad2bdad1637 (diff) |
docs: fix typo in fetch example (#10057)
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/fetch_data.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/fetch_data.md b/docs/examples/fetch_data.md index 4b3dafce2..607225a2a 100644 --- a/docs/examples/fetch_data.md +++ b/docs/examples/fetch_data.md @@ -12,8 +12,8 @@ When building any sort of web application developers will usually need to retrieve data from somewhere else on the web. This works no differently in Deno -than in any other JavaScript application, just call the the `fetch()` method. -For more information on fetch read the +than in any other JavaScript application, just call the `fetch()` method. For +more information on fetch read the [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API). The exception with Deno occurs when running a script which makes a call over the |