Skip to content

Commit

Permalink
Fix order of parameters in README example code. Fixes #86 GH issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcuswestin committed Feb 10, 2014
1 parent c789ea8 commit 0ee8a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ alert(user.name + ' likes ' + user.likes)
store.getAll().user.name == 'marcus'

// Loop over all stored values
store.forEach(function(val, key) {
store.forEach(function(key, val) {
console.log(key, '==', val)
})
```
Expand Down

0 comments on commit 0ee8a5f

Please sign in to comment.