Skip to content

Commit

Permalink
Fixed readme bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Yazykov committed May 23, 2017
1 parent 8c0c358 commit 228e762
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 @@ -23,7 +23,7 @@ request.get( '/private/api/v2/json/accounts/current' )
.then( data => {
console.log( 'Полученные данные', data );
})
.catch e => {
.catch( e => {
console.log( 'Произошла ошибка', e );
})
Expand All @@ -44,7 +44,7 @@ request.post( '/private/api/v2/json/contacts/set', {
.then( data => {
console.log( 'Полученные данные', data );
})
.catch e => {
.catch( e => {
console.log( 'Произошла ошибка создания контакта', e );
})
```
Expand Down

0 comments on commit 228e762

Please sign in to comment.