From ea2c119f4d5fcfa404ed2739be60deae1654f07d Mon Sep 17 00:00:00 2001 From: Scott Kyle Date: Mon, 8 Feb 2016 16:41:37 -0800 Subject: [PATCH] Remove some API doc qualifiers --- docs/list.js | 3 +-- docs/realm.js | 2 +- docs/results.js | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/list.js b/docs/list.js index f199475f..0096404d 100644 --- a/docs/list.js +++ b/docs/list.js @@ -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. diff --git a/docs/realm.js b/docs/realm.js index 0769ccb6..f42df6c0 100644 --- a/docs/realm.js +++ b/docs/realm.js @@ -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'); * ``` diff --git a/docs/results.js b/docs/results.js index 8db20261..3ac760f4 100644 --- a/docs/results.js +++ b/docs/results.js @@ -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