Skip to content

Commit

Permalink
Fix minor typos
Browse files Browse the repository at this point in the history
Find and replace in #1883 caused some bad pluralization.
  • Loading branch information
mramato committed Jul 8, 2014
1 parent b017afe commit fa70718
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Source/DataSources/CompositeEntityCollection.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 2 additions & 2 deletions Source/DataSources/EntityCollection.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion Source/Widgets/Viewer/viewerEntityMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit fa70718

Please sign in to comment.