@@ -2006,7 +2006,7 @@ interface Int8Array {
2006
2006
* Sorts an array.
2007
2007
* @param compareFn Function used to determine the order of the elements. It is expected to return
2008
2008
* a negative value if first argument is less than second argument, zero if they're equal and a positive
2009
- * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
2009
+ * value otherwise. If omitted, the elements are sorted in ascending order.
2010
2010
* ```ts
2011
2011
* [11,2,22,1].sort((a, b) => a - b)
2012
2012
* ```
@@ -2288,7 +2288,7 @@ interface Uint8Array {
2288
2288
* Sorts an array.
2289
2289
* @param compareFn Function used to determine the order of the elements. It is expected to return
2290
2290
* a negative value if first argument is less than second argument, zero if they're equal and a positive
2291
- * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
2291
+ * value otherwise. If omitted, the elements are sorted in ascending order.
2292
2292
* ```ts
2293
2293
* [11,2,22,1].sort((a, b) => a - b)
2294
2294
* ```
@@ -2570,7 +2570,7 @@ interface Uint8ClampedArray {
2570
2570
* Sorts an array.
2571
2571
* @param compareFn Function used to determine the order of the elements. It is expected to return
2572
2572
* a negative value if first argument is less than second argument, zero if they're equal and a positive
2573
- * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
2573
+ * value otherwise. If omitted, the elements are sorted in ascending order.
2574
2574
* ```ts
2575
2575
* [11,2,22,1].sort((a, b) => a - b)
2576
2576
* ```
@@ -2850,7 +2850,7 @@ interface Int16Array {
2850
2850
* Sorts an array.
2851
2851
* @param compareFn Function used to determine the order of the elements. It is expected to return
2852
2852
* a negative value if first argument is less than second argument, zero if they're equal and a positive
2853
- * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
2853
+ * value otherwise. If omitted, the elements are sorted in ascending order.
2854
2854
* ```ts
2855
2855
* [11,2,22,1].sort((a, b) => a - b)
2856
2856
* ```
@@ -3133,7 +3133,7 @@ interface Uint16Array {
3133
3133
* Sorts an array.
3134
3134
* @param compareFn Function used to determine the order of the elements. It is expected to return
3135
3135
* a negative value if first argument is less than second argument, zero if they're equal and a positive
3136
- * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
3136
+ * value otherwise. If omitted, the elements are sorted in ascending order.
3137
3137
* ```ts
3138
3138
* [11,2,22,1].sort((a, b) => a - b)
3139
3139
* ```
@@ -3415,7 +3415,7 @@ interface Int32Array {
3415
3415
* Sorts an array.
3416
3416
* @param compareFn Function used to determine the order of the elements. It is expected to return
3417
3417
* a negative value if first argument is less than second argument, zero if they're equal and a positive
3418
- * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
3418
+ * value otherwise. If omitted, the elements are sorted in ascending order.
3419
3419
* ```ts
3420
3420
* [11,2,22,1].sort((a, b) => a - b)
3421
3421
* ```
@@ -3696,7 +3696,7 @@ interface Uint32Array {
3696
3696
* Sorts an array.
3697
3697
* @param compareFn Function used to determine the order of the elements. It is expected to return
3698
3698
* a negative value if first argument is less than second argument, zero if they're equal and a positive
3699
- * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
3699
+ * value otherwise. If omitted, the elements are sorted in ascending order.
3700
3700
* ```ts
3701
3701
* [11,2,22,1].sort((a, b) => a - b)
3702
3702
* ```
@@ -3978,7 +3978,7 @@ interface Float32Array {
3978
3978
* Sorts an array.
3979
3979
* @param compareFn Function used to determine the order of the elements. It is expected to return
3980
3980
* a negative value if first argument is less than second argument, zero if they're equal and a positive
3981
- * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
3981
+ * value otherwise. If omitted, the elements are sorted in ascending order.
3982
3982
* ```ts
3983
3983
* [11,2,22,1].sort((a, b) => a - b)
3984
3984
* ```
@@ -4261,7 +4261,7 @@ interface Float64Array {
4261
4261
* Sorts an array.
4262
4262
* @param compareFn Function used to determine the order of the elements. It is expected to return
4263
4263
* a negative value if first argument is less than second argument, zero if they're equal and a positive
4264
- * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
4264
+ * value otherwise. If omitted, the elements are sorted in ascending order.
4265
4265
* ```ts
4266
4266
* [11,2,22,1].sort((a, b) => a - b)
4267
4267
* ```
0 commit comments