From 423d9f1fe0888cb56b4ec506f2d0b9eeeda43472 Mon Sep 17 00:00:00 2001 From: Pieter Oliver <68863060+pieterocp@users.noreply.github.com> Date: Wed, 16 Apr 2025 22:23:02 +0100 Subject: [PATCH 1/2] [Fixed] Fix typo --- posts/en/translating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/en/translating.md b/posts/en/translating.md index 85c16a95..81eb303e 100644 --- a/posts/en/translating.md +++ b/posts/en/translating.md @@ -44,4 +44,4 @@ const langs = [ Now, you can begin translating the files. Copy the folder `posts/en` into a new folder `posts/{language-shortcut}` and translate all the files (don't translate the filenames, of course). -If you hit any problems, feel free to [create and issue](https://github.com/axios/axios-docs/issues/new/choose). +If you hit any problems, feel free to [create an issue](https://github.com/axios/axios-docs/issues/new/choose). From 92444e9eeaa8ffa1eb8fae30ce44b4b7c0755017 Mon Sep 17 00:00:00 2001 From: Pieter Oliver <68863060+pieterocp@users.noreply.github.com> Date: Wed, 16 Apr 2025 22:28:15 +0100 Subject: [PATCH 2/2] [Fixed] Typo --- posts/en/req_config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/en/req_config.md b/posts/en/req_config.md index 68dd3c9b..f4aae53e 100644 --- a/posts/en/req_config.md +++ b/posts/en/req_config.md @@ -183,7 +183,7 @@ These are the available config options for making requests. Only the `url` is re // `signal` and instance of AbortController can be used to cancel the request signal: new AbortController().signal, - // (Deprecatred) `cancelToken` specifies a cancel token that can also be used to cancel the request + // (Deprecated) `cancelToken` specifies a cancel token that can also be used to cancel the request // (see Cancellation section below for details) cancelToken: new CancelToken(function (cancel) { }),