From fa70718c2855c9262424ebd7f38eec90788a8c10 Mon Sep 17 00:00:00 2001 From: Matthew Amato Date: Tue, 8 Jul 2014 15:28:18 -0400 Subject: [PATCH] Fix minor typos Find and replace in #1883 caused some bad pluralization. --- Source/DataSources/CompositeEntityCollection.js | 4 ++-- Source/DataSources/EntityCollection.js | 4 ++-- Source/Widgets/Viewer/viewerEntityMixin.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/DataSources/CompositeEntityCollection.js b/Source/DataSources/CompositeEntityCollection.js index 7e231c3e3c31..3d568cf72908 100644 --- a/Source/DataSources/CompositeEntityCollection.js +++ b/Source/DataSources/CompositeEntityCollection.js @@ -409,12 +409,12 @@ define([ }; /** - * Computes the maximum availability of the Entitys in the collection. + * Computes the maximum availability of the entities in the collection. * If the collection contains a mix of infinitely available data and non-infinite data, * It will return the interval pertaining to the non-infinite data only. If all * data is infinite, an infinite interval will be returned. * - * @returns {TimeInterval} The availability of Entitys in the collection. + * @returns {TimeInterval} The availability of entities in the collection. */ CompositeEntityCollection.prototype.computeAvailability = function() { return this._composite.computeAvailability(); diff --git a/Source/DataSources/EntityCollection.js b/Source/DataSources/EntityCollection.js index 9076b9d4ff12..b98c8c642b72 100644 --- a/Source/DataSources/EntityCollection.js +++ b/Source/DataSources/EntityCollection.js @@ -132,12 +132,12 @@ define([ }); /** - * Computes the maximum availability of the Entitys in the collection. + * Computes the maximum availability of the entities in the collection. * If the collection contains a mix of infinitely available data and non-infinite data, * it will return the interval pertaining to the non-infinite data only. If all * data is infinite, an infinite interval will be returned. * - * @returns {TimeInterval} The availability of Entitys in the collection. + * @returns {TimeInterval} The availability of entities in the collection. */ EntityCollection.prototype.computeAvailability = function() { var startTime = Iso8601.MAXIMUM_VALUE; diff --git a/Source/Widgets/Viewer/viewerEntityMixin.js b/Source/Widgets/Viewer/viewerEntityMixin.js index f2acb7c328db..0b42d1cd22b1 100644 --- a/Source/Widgets/Viewer/viewerEntityMixin.js +++ b/Source/Widgets/Viewer/viewerEntityMixin.js @@ -29,7 +29,7 @@ define([ /** * A mixin which adds behavior to the Viewer widget for dealing with Entity instances. - * This allows for Entitys to be tracked with the camera, either by the viewer clicking + * This allows for entities to be tracked with the camera, either by the viewer clicking * on them, or by setting the trackedEntity property. * Rather than being called directly, this function is normally passed as * a parameter to {@link Viewer#extend}, as shown in the example below.