Remove some API doc qualifiers

This commit is contained in:
Scott Kyle 2016-02-08 16:41:37 -08:00
parent b63dfd1c04
commit ea2c119f4d
3 changed files with 4 additions and 5 deletions

View File

@ -4,8 +4,7 @@
/**
* Instances of this class (herein referred to as lists) will be returned when accessing
* object properties whose type is `"list"`
* Instances of this class will be returned when accessing object properties whose type is `"list"`
* (see {@linkplain Realm~ObjectSchemaProperty ObjectSchemaProperty}).
* The objects contained in a list are accessible through its index properties and may only be
* modified inside a {@linkplain Realm#write write} transaction.

View File

@ -3,7 +3,7 @@
*/
/**
* A Realm instance (also referred to as a realm) represents a Realm database.
* A Realm instance represents a Realm database.
* ```js
* const Realm = require('realm');
* ```

View File

@ -4,8 +4,8 @@
/**
* Instances of this class (herein referred to as results) are typically **live** collections
* returned by {@link Realm#objects objects()} that will update as new objects are either
* Instances of this class are typically **live** collections returned by
* {@link Realm#objects objects()} that will update as new objects are either
* added to or deleted from the Realm that match the underlying query. Results returned by
* {@link Realm.Results#snapshot snapshot()}, however, are will **not** live update.
* @memberof Realm