Merge pull request #237 from realm/nh/fix_doc

Fix doc for Android
This commit is contained in:
Scott Kyle 2016-02-12 09:49:55 -08:00
commit 74c780c3dc
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ You can see more examples of how to use these APIs in the [ReactExample](https:/
The `realmConfig` passed to the constructor can contain the following:
- `schema` required when first accessing a realm - array of `ObjectSchema` or object constructors (see below)
- `path` optional - defaults to `Realm.defaultPath` (which initially is `'Documents/default.realm'`)
- `path` optional - defaults to `Realm.defaultPath` (which initially is `'Documents/default.realm'` for iOS and inside the [internal storage](http://developer.android.com/reference/android/content/Context.html#getFilesDir()) `/data/data/<packagename>/files/` for Android)
- `schemaVersion` optional - defaults to `0` but must be specified and incremented after changing the schema
### ObjectSchema