Skip to content

Commit

Permalink
Fix options params, Change the order, Add documentation for instance …
Browse files Browse the repository at this point in the history
…also
  • Loading branch information
theikkila committed Mar 26, 2017
1 parent 2e0adc1 commit 8cdfcd0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -139,10 +139,10 @@ For convenience aliases have been provided for all supported request methods.
##### axios.get(url[, config])
##### axios.delete(url[, config])
##### axios.head(url[, config])
##### axios.options(url[, config])
##### axios.post(url[, data[, config]])
##### axios.put(url[, data[, config]])
##### axios.patch(url[, data[, config]])
##### axios.options(url[, data[, config]])

###### NOTE
When using the alias methods `url`, `method`, and `data` properties don't need to be specified in config.
Expand Down Expand Up @@ -176,6 +176,7 @@ The available instance methods are listed below. The specified config will be me
##### axios#get(url[, config])
##### axios#delete(url[, config])
##### axios#head(url[, config])
##### axios#options(url[, config])
##### axios#post(url[, data[, config]])
##### axios#put(url[, data[, config]])
##### axios#patch(url[, data[, config]])
Expand Down

0 comments on commit 8cdfcd0

Please sign in to comment.