Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmartins committed Sep 20, 2015
1 parent 9b67b83 commit c99ed8d
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 @@ -13,7 +13,7 @@
JSON FileSystem Database is a JSON database such as MongoDB backed by IO FileSystem operations.<br/>
Implemented with **Pessimistic Transaction Locking** approach.<br/>
All methods are asynchronous and access / filtering is executed in parallel using [async](https://github.com/caolan/async).<br/>
Based on [Jalalhejazi](https://github.com/Jalalhejazi) [jsonfs](https://github.com/Jalalhejazi/jsonfs).
Based on [Jalalhejazi](https://github.com/Jalalhejazi), [jsonfs](https://github.com/Jalalhejazi/jsonfs).

# Dependencies

Expand Down Expand Up @@ -43,7 +43,7 @@ var JSONDBFS = require('../index'),
});

database['Users'].update({name: 'Manuel'}, {name: 'Manuel Martins', token: 'xsf32S123ss'}, function(err, result){
// { nMatched: 1, nModified: 1, nUpserted: 0 }
// result is { nMatched: 1, nModified: 1, nUpserted: 0 }
});

database['Users'].find(function(err, documents){
Expand Down

0 comments on commit c99ed8d

Please sign in to comment.