Update README.md

This commit is contained in:
Ari Lazier 2015-11-04 21:32:27 -08:00
parent 22c4dc904c
commit 28ccf799f4
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ let characters = realm.objects('Person');
let chandler = realm.objects('Person', 'name = "Chandler Bing"')[0]; let chandler = realm.objects('Person', 'name = "Chandler Bing"')[0];
``` ```
Queries are live updating, so as change are made to the Realm, queries are updated automatically on access. Queries are live updating, so as change are made to a Realm queries are updated automatically to reflect those changes.
You can see more examples of how to use these APIs in the [ReactExample](https://github.com/realm/realm-js/tree/master/examples/ReactExample) app and in the [JS test files](https://github.com/realm/realm-js/tree/master/tests). You can see more examples of how to use these APIs in the [ReactExample](https://github.com/realm/realm-js/tree/master/examples/ReactExample) app and in the [JS test files](https://github.com/realm/realm-js/tree/master/tests).