Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Badi committed May 23, 2016
1 parent 785340b commit 44175da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ user.request()
})
.catch(function (reason) {
// handle the rejection reason
// reason structure is {error: {...}, response: {...}}
console.log(reason.statusCode)
})

```
Expand Down Expand Up @@ -132,7 +132,7 @@ getContacts.request({Limit: 3}, handleContacts);

``` javascript

getContacts.id(2).request(handleSingleContact);
getContacts.id(2).request(handleSingleContact)

````

Expand All @@ -145,7 +145,7 @@ var postContact = Mailjet.post('contact');
postContact.action('managemanycontacts').request({
ContactLists: MyContactListsArray,
Contacts: MyContactsArray,
}, handlePostResponse);
}, handlePostResponse)
```

Expand Down

0 comments on commit 44175da

Please sign in to comment.