From 6923ee77b11518069688b053db2ba2e8dd602bbf Mon Sep 17 00:00:00 2001 From: Daniel Fjeldstad <45217974+w3bdesign@users.noreply.github.com> Date: Thu, 13 Oct 2022 10:32:35 +0200 Subject: [PATCH 1/3] docs: Fix broken changelog link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5f17e582aa..74fc6d81b0 100755 --- a/README.md +++ b/README.md @@ -1178,7 +1178,7 @@ You can use Gitpod, an online IDE(which is free for Open Source) for contributin ## Resources -* [Changelog](https://github.com/axios/axios/blob/master/CHANGELOG.md) +* [Changelog](https://github.com/axios/CHANGELOG.md) * [Upgrade Guide](https://github.com/axios/axios/blob/master/UPGRADE_GUIDE.md) * [Ecosystem](https://github.com/axios/axios/blob/master/ECOSYSTEM.md) * [Contributing Guide](https://github.com/axios/axios/blob/master/CONTRIBUTING.md) From 13df54f004800f12a7239c9b80a3da9a0578d50b Mon Sep 17 00:00:00 2001 From: Daniel Fjeldstad <45217974+w3bdesign@users.noreply.github.com> Date: Sat, 15 Oct 2022 20:41:08 +0200 Subject: [PATCH 2/3] docs: Fix rest of links in Resources --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3061216c04..c479c384b3 100755 --- a/README.md +++ b/README.md @@ -621,7 +621,7 @@ instance.defaults.headers.common['Authorization'] = AUTH_TOKEN; ### Config order of precedence -Config will be merged with an order of precedence. The order is library defaults found in [lib/defaults.js](https://github.com/axios/axios/blob/master/lib/defaults/index.js#L28), then `defaults` property of the instance, and finally `config` argument for the request. The latter will take precedence over the former. Here's an example. +Config will be merged with an order of precedence. The order is library defaults found in [lib/defaults.js](https://github.com/axioslib/defaults/index.js#L28), then `defaults` property of the instance, and finally `config` argument for the request. The latter will take precedence over the former. Here's an example. ```js // Create an instance using the config defaults provided by the library @@ -1258,10 +1258,10 @@ You can use Gitpod, an online IDE(which is free for Open Source) for contributin ## Resources * [Changelog](https://github.com/axios/CHANGELOG.md) -* [Upgrade Guide](https://github.com/axios/axios/blob/master/UPGRADE_GUIDE.md) -* [Ecosystem](https://github.com/axios/axios/blob/master/ECOSYSTEM.md) -* [Contributing Guide](https://github.com/axios/axios/blob/master/CONTRIBUTING.md) -* [Code of Conduct](https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md) +* [Upgrade Guide](https://github.com/axios/UPGRADE_GUIDE.md) +* [Ecosystem](https://github.com/axios/ECOSYSTEM.md) +* [Contributing Guide](https://github.com/axios/CONTRIBUTING.md) +* [Code of Conduct](https://github.com/axios/CODE_OF_CONDUCT.md) ## Credits From f8f11ce45aeb2f6fc073ff4047ba5e8830eacf6a Mon Sep 17 00:00:00 2001 From: Daniel Fjeldstad <45217974+w3bdesign@users.noreply.github.com> Date: Sat, 15 Oct 2022 20:43:54 +0200 Subject: [PATCH 3/3] docs: Undo change --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c479c384b3..cc50f4626e 100755 --- a/README.md +++ b/README.md @@ -621,7 +621,7 @@ instance.defaults.headers.common['Authorization'] = AUTH_TOKEN; ### Config order of precedence -Config will be merged with an order of precedence. The order is library defaults found in [lib/defaults.js](https://github.com/axioslib/defaults/index.js#L28), then `defaults` property of the instance, and finally `config` argument for the request. The latter will take precedence over the former. Here's an example. +Config will be merged with an order of precedence. The order is library defaults found in [lib/defaults.js](https://github.com/axios/axios/blob/master/lib/defaults/index.js#L28), then `defaults` property of the instance, and finally `config` argument for the request. The latter will take precedence over the former. Here's an example. ```js // Create an instance using the config defaults provided by the library