Skip to content

Commit 6d05b96

Browse files
authored
Fix typos (#3309)
Fix typos
1 parent fa36737 commit 6d05b96

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Fixes and Functionality:
5858
- Fixing test\unit\adapters\http.js lint errors
5959
- Adding test for disabling auto decompression
6060
- Removing changes that fixed lint errors in tests
61-
- Removing formating change to unit test
61+
- Removing formatting change to unit test
6262
- Add independent `maxBodyLength` option ([#2781](https://github.com/axios/axios/pull/2781))
6363
- Add independent option to set the maximum size of the request body
6464
- Remove maxBodyLength check
@@ -104,14 +104,14 @@ Internal and Tests:
104104
- Adding console log on sandbox server startup ([#2210](https://github.com/axios/axios/pull/2210))
105105
- Adding console log on sandbox server startup
106106
- Update server.js
107-
Add server error handeling
107+
Add server error handling
108108
- Update server.js
109109
Better error message, remove retry.
110110
- Adding tests for method `options` type definitions ([#1996](https://github.com/axios/axios/pull/1996))
111111
Update tests.
112112
- Add test for redirecting with too large response ([#2695](https://github.com/axios/axios/pull/2695))
113113
- Fixing unit test failure in Windows OS ([#2601](https://github.com/axios/axios/pull/2601))
114-
- Fixing issue for HEAD method and gziped repsonse ([#2666](https://github.com/axios/axios/pull/2666))
114+
- Fixing issue for HEAD method and gzipped response ([#2666](https://github.com/axios/axios/pull/2666))
115115
- Fix tests in browsers ([#2748](https://github.com/axios/axios/pull/2748))
116116
- chore: add `jsdelivr` and `unpkg` support ([#2443](https://github.com/axios/axios/pull/2443))
117117

@@ -149,7 +149,7 @@ Documentation:
149149
- Add CDNJS version badge in README.md ([#878](https://github.com/axios/axios/pull/878))
150150
This badge will show the version on CDNJS!
151151
- Documentation update to clear up ambiguity in code examples ([#2928](https://github.com/axios/axios/pull/2928))
152-
- Made a adjustment to the documenation to clear up any ambiguity around the use of "fs". This should help clear up that the code examples with "fs" cannot be used on the client side.
152+
- Made an adjustment to the documentation to clear up any ambiguity around the use of "fs". This should help clear up that the code examples with "fs" cannot be used on the client side.
153153
- Update README.md about validateStatus ([#2912](https://github.com/axios/axios/pull/2912))
154154
Rewrote the comment from "Reject only if the status code is greater than or equal to 500" to "Resolve only if the status code is less than 500"
155155
- Updating documentation for usage form-data ([#2805](https://github.com/axios/axios/pull/2805))
@@ -276,7 +276,7 @@ Documentation:
276276
- Update response interceptor docs ([#2399](https://github.com/axios/axios/pull/2399))
277277
- Update README.md ([#2504](https://github.com/axios/axios/pull/2504))
278278
- Fix word 'sintaxe' to 'syntax' in README.md ([#2432](https://github.com/axios/axios/pull/2432))
279-
- upadating README: notes on CommonJS autocomplete ([#2256](https://github.com/axios/axios/pull/2256))
279+
- updating README: notes on CommonJS autocomplete ([#2256](https://github.com/axios/axios/pull/2256))
280280
- Fix grammar in README.md ([#2271](https://github.com/axios/axios/pull/2271))
281281
- Doc fixes, minor examples cleanup ([#2198](https://github.com/axios/axios/pull/2198))
282282

@@ -329,7 +329,7 @@ New Functionality:
329329

330330
- Add getUri method ([#1712](https://github.com/axios/axios/issues/1712))
331331
- Add support for no_proxy env variable ([#1693](https://github.com/axios/axios/issues/1693))
332-
- Add toJSON to decorated Axios errors to faciliate serialization ([#1625](https://github.com/axios/axios/issues/1625))
332+
- Add toJSON to decorated Axios errors to facilitate serialization ([#1625](https://github.com/axios/axios/issues/1625))
333333
- Add second then on axios call ([#1623](https://github.com/axios/axios/issues/1623))
334334
- Typings: allow custom return types
335335
- Add option to specify character set in responses (with http adapter)

UPGRADE_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ This will polyfill the global environment, and only needs to be done once.
135135

136136
#### `axios.success`/`axios.error`
137137

138-
The `success`, and `error` aliases were deprectated in [0.4.0](https://github.com/axios/axios/blob/master/CHANGELOG.md#040-oct-03-2014). As of this release they have been removed entirely. Instead please use `axios.then`, and `axios.catch` respectively.
138+
The `success`, and `error` aliases were deprecated in [0.4.0](https://github.com/axios/axios/blob/master/CHANGELOG.md#040-oct-03-2014). As of this release they have been removed entirely. Instead please use `axios.then`, and `axios.catch` respectively.
139139

140140
```js
141141
axios.get('some/url')

test/specs/requests.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ describe('requests', function () {
263263
});
264264
});
265265

266-
it('should make cross domian http request', function (done) {
266+
it('should make cross domain http request', function (done) {
267267
var response;
268268

269269
axios.post('www.someurl.com/foo').then(function(res){

0 commit comments

Comments
 (0)