Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
XadillaX committed Nov 6, 2015
1 parent ae0acea commit 5af055f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ var spidex = require("spidex");
And the functions are:

```javascript
spidex.get(url, [opts], [callback]);
spidex.post(url, [opts], [callback]);
spidex.put(url, [opts], [callback]);
spidex.delete(url, [opts], [callback]);
spidex.get(url, [opts], [callback]).on("error", errorCallback);
spidex.post(url, [opts], [callback]).on("error", errorCallback);
spidex.put(url, [opts], [callback]).on("error", errorCallback);
spidex.delete(url, [opts], [callback]).on("error", errorCallback);
```

`opts` can be an `Object` that has options follow:
Expand Down

0 comments on commit 5af055f

Please sign in to comment.