Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
elbywan committed Sep 25, 2017
1 parent 2486acb commit 85aa2b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,9 @@ Converts a javascript object to query parameters, then appends this query string
```js
let w = wretch("http://example.com")
// url is http://example.com
w = w.query({ a: 1, b : 2 })
w = w.query({ a: 1, b: 2 })
// url is now http://example.com?a=1&b=2
w = w.query({ c: 3, d : [4, 5] })
w = w.query({ c: 3, d: [4, 5] })
// url is now http://example.com?c=3&d=4&d=5
```
Expand Down

0 comments on commit 85aa2b2

Please sign in to comment.