@@ -301,7 +301,7 @@ namespace Enumerable {
301301 */
302302 any ( predicate ?: Predicate < T > ) : boolean ;
303303 /**
304- * Handles current items as base numbers and calculates the arc cosine for each item.
304+ * Handles current items as numbers and calculates the arc cosine for each item.
305305 *
306306 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
307307 * Default: (false)
@@ -310,7 +310,7 @@ namespace Enumerable {
310310 */
311311 arcCos ( handleAsInt ?: boolean ) : IEnumerable < number > ;
312312 /**
313- * Handles current items as base numbers and calculates the arc hyperbolic cosine for each item.
313+ * Handles current items as numbers and calculates the arc hyperbolic cosine for each item.
314314 *
315315 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
316316 * Default: (false)
@@ -319,7 +319,7 @@ namespace Enumerable {
319319 */
320320 arcCosH ( handleAsInt ?: boolean ) : IEnumerable < number > ;
321321 /**
322- * Handles current items as base numbers and calculates the arc sine for each item.
322+ * Handles current items as numbers and calculates the arc sine for each item.
323323 *
324324 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
325325 * Default: (false)
@@ -328,7 +328,7 @@ namespace Enumerable {
328328 */
329329 arcSin ( handleAsInt ?: boolean ) : IEnumerable < number > ;
330330 /**
331- * Handles current items as base numbers and calculates the arc hyperbolic sine for each item.
331+ * Handles current items as numbers and calculates the arc hyperbolic sine for each item.
332332 *
333333 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
334334 * Default: (false)
@@ -337,7 +337,7 @@ namespace Enumerable {
337337 */
338338 arcSinH ( handleAsInt ?: boolean ) : IEnumerable < number > ;
339339 /**
340- * Handles current items as base numbers and calculates the arc tangent for each item.
340+ * Handles current items as numbers and calculates the arc tangent for each item.
341341 *
342342 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
343343 * Default: (false)
@@ -346,7 +346,7 @@ namespace Enumerable {
346346 */
347347 arcTan ( handleAsInt ?: boolean ) : IEnumerable < number > ;
348348 /**
349- * Handles current items as base numbers and calculates the arc hyperbolic tangent for each item.
349+ * Handles current items as numbers and calculates the arc hyperbolic tangent for each item.
350350 *
351351 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
352352 * Default: (false)
@@ -450,7 +450,7 @@ namespace Enumerable {
450450 contains < U > ( item : U ,
451451 comparer ?: EqualityComparer < T , U > | true ) : boolean ;
452452 /**
453- * Handles current items as base numbers and calculates the cosine for each item.
453+ * Handles current items as numbers and calculates the cosine for each item.
454454 *
455455 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
456456 * Default: (false)
@@ -459,7 +459,7 @@ namespace Enumerable {
459459 */
460460 cos ( handleAsInt ?: boolean ) : IEnumerable < number > ;
461461 /**
462- * Handles current items as base numbers and calculates the hyperbolic cosine for each item.
462+ * Handles current items as numbers and calculates the hyperbolic cosine for each item.
463463 *
464464 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
465465 * Default: (false)
@@ -738,7 +738,7 @@ namespace Enumerable {
738738 lastOrDefault < U = symbol > ( predicateOrDefaultValue ?: Predicate < T > | T ,
739739 defaultValue ?: U ) : T | U ;
740740 /**
741- * Handles current items as base numbers and calculates the natural logarithm (base e) of a them.
741+ * Handles current items as numbers and calculates the natural logarithm (base e) of a them.
742742 *
743743 * @param {number } [base] The custom base. Default: e
744744 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
@@ -930,7 +930,7 @@ namespace Enumerable {
930930 */
931931 shuffle ( sortValueProvider ?: ( ) => any ) : IOrderedEnumerable < T > ;
932932 /**
933- * Handles current items as base numbers and calculates the sine for each item.
933+ * Handles current items as numbers and calculates the sine for each item.
934934 *
935935 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
936936 * Default: (false)
@@ -964,7 +964,7 @@ namespace Enumerable {
964964 singleOrDefault < U = symbol > ( predicateOrDefaultValue ?: Predicate < T > | T ,
965965 defaultValue ?: U ) : T | U ;
966966 /**
967- * Handles current items as base numbers and calculates the hyperbolic sine for each item.
967+ * Handles current items as numbers and calculates the hyperbolic sine for each item.
968968 *
969969 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
970970 * Default: (false)
@@ -995,7 +995,7 @@ namespace Enumerable {
995995 */
996996 skipWhile ( predicate : Predicate < T > ) : IEnumerable < T > ;
997997 /**
998- * Handles current items as base numbers and calculates square root for each item.
998+ * Handles current items as numbers and calculates square root for each item.
999999 *
10001000 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
10011001 * Default: (false)
@@ -1026,7 +1026,7 @@ namespace Enumerable {
10261026 */
10271027 takeWhile ( predicate : Predicate < T > ) : IEnumerable < T > ;
10281028 /**
1029- * Handles current items as base numbers and calculates the tangent for each item.
1029+ * Handles current items as numbers and calculates the tangent for each item.
10301030 *
10311031 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
10321032 * Default: (false)
@@ -1035,7 +1035,7 @@ namespace Enumerable {
10351035 */
10361036 tan ( handleAsInt ?: boolean ) : IEnumerable < number > ;
10371037 /**
1038- * Handles current items as base numbers and calculates the hyperbolic tangent for each item.
1038+ * Handles current items as numbers and calculates the hyperbolic tangent for each item.
10391039 *
10401040 * @param {boolean } [handleAsInt] Handle as integer values (true) or floats (false).
10411041 * Default: (false)
0 commit comments