Remove some API doc qualifiers
This commit is contained in:
parent
b63dfd1c04
commit
ea2c119f4d
|
@ -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.
|
||||
|
|
|
@ -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');
|
||||
* ```
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue