Skip to content

Commit

Permalink
dev: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shripadk committed Nov 20, 2011
1 parent 7808e47 commit 748a663
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -109,7 +109,7 @@ nexmo.number.buy('ES', 34911067000, function(err, res) { ... });

### Number - cancel ###
```js
// Purchase a given inbound number
// Cancel an inbound number
// Required parameters:
// country-code : Country code (ex: ES).
// msisdn : An available inbound number (ex: 34911067000)
Expand Down
2 changes: 1 addition & 1 deletion lib/sms.js
Expand Up @@ -73,7 +73,7 @@ sms.prototype.send = function(options, callback) {
}, function(err, response, body) {
if(err || (response.statusCode !== 200)) {
return callback(err || response, null);
};
}

try {
var res = JSON.parse(body);
Expand Down

0 comments on commit 748a663

Please sign in to comment.