From 1c3ee6ece197eabb3c1f4dbaa1a6600c314a0bf8 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Wed, 27 Sep 2023 20:49:59 +0200 Subject: [PATCH] Update .docs/content/1.Guide/2.fetchers.md Co-authored-by: William Oldham --- .docs/content/1.Guide/2.fetchers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docs/content/1.Guide/2.fetchers.md b/.docs/content/1.Guide/2.fetchers.md index c8b77aa..7b3c0cf 100644 --- a/.docs/content/1.Guide/2.fetchers.md +++ b/.docs/content/1.Guide/2.fetchers.md @@ -10,7 +10,7 @@ In most cases, you can use the `fetch()` API. This will work in newer versions o const fetcher = makeDefaultFetcher(fetch); ``` -If you using older version of nodejs. You can use the npm package `node-fetch` to polyfill fetch: +If you using older version of Node.js. You can use the npm package `node-fetch` to polyfill fetch: ```ts import fetch from "node-fetch";