Skip to content

Commit

Permalink
fix missin quote
Browse files Browse the repository at this point in the history
  • Loading branch information
timaschew committed Jul 10, 2016
1 parent 84d631c commit e8c874d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Record discards and deletes now get called after when ready, which makes the API
Before:
```javascript
record = client.record.getRecord( 'user1' );
record.set( 'name', bob' );
record.set( 'name', 'bob' );
record.onReady( () => {
record.discard();
})
Expand All @@ -51,7 +51,7 @@ Now:
```javascript
record = client.record.getRecord( 'user1' );
record
.set( 'name', bob' )
.set( 'name', 'bob' )
.discard();
```

Expand Down Expand Up @@ -88,4 +88,4 @@ client.login( {}, ( success, data ) => {

- Login after logout doesn't overide auth parameters #88

- Deepstream not updating object properties #96 ( @drsirmrpresidentfathercharles )
- Deepstream not updating object properties #96 ( @drsirmrpresidentfathercharles )

0 comments on commit e8c874d

Please sign in to comment.