Skip to content

Commit

Permalink
Merge pull request #666 from timgates42/bugfix_typo_occurring
Browse files Browse the repository at this point in the history
docs: Fix simple typo, occuring -> occurring
  • Loading branch information
andrewplummer authored Apr 19, 2020
2 parents 4adba2e + 6a17f69 commit 3ca5781
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions dist/sugar-es5.js
Original file line number Diff line number Diff line change
Expand Up @@ -11494,7 +11494,7 @@
/***
* @method least([all] = false, [map])
* @returns Array
* @short Returns the elements in the array with the least commonly occuring value.
* @short Returns the elements in the array with the least commonly occurring value.
* @extra [map] can be passed in place of [all], and is a function of type
* `mapFn` that maps the value to be checked or a string acting as a
* shortcut. If [all] is true, will return multiple values in an array.
Expand Down Expand Up @@ -11529,7 +11529,7 @@
/***
* @method most([all] = false, [map])
* @returns Array
* @short Returns the elements in the array with the most commonly occuring value.
* @short Returns the elements in the array with the most commonly occurring value.
* @extra [map] can be passed in place of [all], and is a function of type
* `mapFn` that maps the value to be checked or a string acting as a
* shortcut. If [all] is true, will return multiple values in an array.
Expand Down Expand Up @@ -12189,7 +12189,7 @@
* @method least([all] = false, [map])
* @returns Mixed
* @short Returns the key of the property in the object with the least commonly
* occuring value.
* occurring value.
* @extra If [all] is true, will return an object with all properties in the
* object with the least common value. [map] can be passed in place of
* [all] and is a function of type `mapFn` that maps the value to be
Expand Down Expand Up @@ -12224,7 +12224,7 @@
* @method most([all] = false, [map])
* @returns Mixed
* @short Returns the key of the property in the object with the most commonly
* occuring value.
* occurring value.
* @extra If [all] is true, will return an object with all properties in the
* object with the most common value. [map] can be passed in place of
* [all] and is a function of type `mapFn` that maps the value to be
Expand Down Expand Up @@ -14103,4 +14103,4 @@

buildDateRangeUnits();

}).call(this);
}).call(this);
10 changes: 5 additions & 5 deletions dist/sugar.js
Original file line number Diff line number Diff line change
Expand Up @@ -10942,7 +10942,7 @@
/***
* @method least([all] = false, [map])
* @returns Array
* @short Returns the elements in the array with the least commonly occuring value.
* @short Returns the elements in the array with the least commonly occurring value.
* @extra [map] can be passed in place of [all], and is a function of type
* `mapFn` that maps the value to be checked or a string acting as a
* shortcut. If [all] is true, will return multiple values in an array.
Expand Down Expand Up @@ -10977,7 +10977,7 @@
/***
* @method most([all] = false, [map])
* @returns Array
* @short Returns the elements in the array with the most commonly occuring value.
* @short Returns the elements in the array with the most commonly occurring value.
* @extra [map] can be passed in place of [all], and is a function of type
* `mapFn` that maps the value to be checked or a string acting as a
* shortcut. If [all] is true, will return multiple values in an array.
Expand Down Expand Up @@ -11637,7 +11637,7 @@
* @method least([all] = false, [map])
* @returns Mixed
* @short Returns the key of the property in the object with the least commonly
* occuring value.
* occurring value.
* @extra If [all] is true, will return an object with all properties in the
* object with the least common value. [map] can be passed in place of
* [all] and is a function of type `mapFn` that maps the value to be
Expand Down Expand Up @@ -11672,7 +11672,7 @@
* @method most([all] = false, [map])
* @returns Mixed
* @short Returns the key of the property in the object with the most commonly
* occuring value.
* occurring value.
* @extra If [all] is true, will return an object with all properties in the
* object with the most common value. [map] can be passed in place of
* [all] and is a function of type `mapFn` that maps the value to be
Expand Down Expand Up @@ -13551,4 +13551,4 @@

buildDateRangeUnits();

}).call(this);
}).call(this);
8 changes: 4 additions & 4 deletions lib/enumerable.js
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ defineInstance(sugarArray, {
/***
* @method least([all] = false, [map])
* @returns Array
* @short Returns the elements in the array with the least commonly occuring value.
* @short Returns the elements in the array with the least commonly occurring value.
* @extra [map] can be passed in place of [all], and is a function of type
* `mapFn` that maps the value to be checked or a string acting as a
* shortcut. If [all] is true, will return multiple values in an array.
Expand Down Expand Up @@ -768,7 +768,7 @@ defineInstance(sugarArray, {
/***
* @method most([all] = false, [map])
* @returns Array
* @short Returns the elements in the array with the most commonly occuring value.
* @short Returns the elements in the array with the most commonly occurring value.
* @extra [map] can be passed in place of [all], and is a function of type
* `mapFn` that maps the value to be checked or a string acting as a
* shortcut. If [all] is true, will return multiple values in an array.
Expand Down Expand Up @@ -1428,7 +1428,7 @@ defineInstanceAndStatic(sugarObject, {
* @method least([all] = false, [map])
* @returns Mixed
* @short Returns the key of the property in the object with the least commonly
* occuring value.
* occurring value.
* @extra If [all] is true, will return an object with all properties in the
* object with the least common value. [map] can be passed in place of
* [all] and is a function of type `mapFn` that maps the value to be
Expand Down Expand Up @@ -1463,7 +1463,7 @@ defineInstanceAndStatic(sugarObject, {
* @method most([all] = false, [map])
* @returns Mixed
* @short Returns the key of the property in the object with the most commonly
* occuring value.
* occurring value.
* @extra If [all] is true, will return an object with all properties in the
* object with the most common value. [map] can be passed in place of
* [all] and is a function of type `mapFn` that maps the value to be
Expand Down

0 comments on commit 3ca5781

Please sign in to comment.