Skip to content

Commit

Permalink
Merge pull request #200 from toymachiner62/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
kyleconroy committed Sep 22, 2015
2 parents d72547c + 3c3b203 commit 8385c41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -47,7 +47,7 @@ stripe.customers.create({
});
}).then(function(charge) {
// New charge created on a new customer
}, function(err) {
}).catch(function(err) {
// Deal with an error
});
```
Expand All @@ -60,7 +60,7 @@ stripe.balance.retrieve({
stripe_account: "acct_foo"
}).then(function(balance) {
// The balance object for the connected account
}, function(err) {
}).catch(function(err) {
// Error
});
```
Expand Down

0 comments on commit 8385c41

Please sign in to comment.