Skip to content

Commit ae73ca9

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent ac749e1 commit ae73ca9

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

lib/node_modules/@stdlib/stats/array/maxsorted/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# maxsorted
2222

23-
> Calculate the maximum value of an sorted array.
23+
> Calculate the maximum value of a sorted array.
2424
2525
<section class="intro">
2626

@@ -38,7 +38,7 @@ var maxsorted = require( '@stdlib/stats/array/maxsorted' );
3838

3939
#### maxsorted( x )
4040

41-
Computes the maximum value of an sorted array.
41+
Computes the maximum value of a sorted array.
4242

4343
```javascript
4444
var x = [ 1.0, 2.0, 3.0 ];

lib/node_modules/@stdlib/stats/array/maxsorted/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( x )
3-
Computes the maximum value of an sorted array.
3+
Computes the maximum value of a sorted array.
44

55
If provided an empty array, the function returns `NaN`.
66

lib/node_modules/@stdlib/stats/array/maxsorted/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Compute the maximum value of an sorted array.
22+
* Compute the maximum value of a sorted array.
2323
*
2424
* @module @stdlib/stats/array/maxsorted
2525
*

lib/node_modules/@stdlib/stats/array/maxsorted/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var GENERIC_DTYPE = 'generic';
3838
// MAIN //
3939

4040
/**
41-
* Computes the maximum value of an sorted array.
41+
* Computes the maximum value of a sorted array.
4242
*
4343
* @param {NumericArray} x - input array
4444
* @throws {TypeError} first argument must be an array-like object

lib/node_modules/@stdlib/stats/array/maxsorted/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/stats/array/maxsorted",
33
"version": "0.0.0",
4-
"description": "Calculate the maximum value of an sorted array.",
4+
"description": "Calculate the maximum value of a sorted array.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/stats/array/maxsorted/test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ tape( 'the function throws an error if provided a first argument which has an un
8989
}
9090
});
9191

92-
tape( 'the function calculates the maximum value of an sorted array', function test( t ) {
92+
tape( 'the function calculates the maximum value of a sorted array', function test( t ) {
9393
var x;
9494
var v;
9595

@@ -136,7 +136,7 @@ tape( 'the function calculates the maximum value of an sorted array', function t
136136
t.end();
137137
});
138138

139-
tape( 'the function calculates the maximum value of an sorted array (accessors)', function test( t ) {
139+
tape( 'the function calculates the maximum value of a sorted array (accessors)', function test( t ) {
140140
var x;
141141
var v;
142142

@@ -183,7 +183,7 @@ tape( 'the function calculates the maximum value of an sorted array (accessors)'
183183
t.end();
184184
});
185185

186-
tape( 'the function calculates the maximum value of an sorted array (array-like object)', function test( t ) {
186+
tape( 'the function calculates the maximum value of a sorted array (array-like object)', function test( t ) {
187187
var x;
188188
var v;
189189

0 commit comments

Comments
 (0)