Skip to content

Commit 3c44055

Browse files
authored
docs: apply suggestions from code review
Signed-off-by: Muhammad Haris <[email protected]>
1 parent 9b0d519 commit 3c44055

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/ndarray/pop/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
# pop
2222

23-
> Return an array containing a read-only truncated view of an input [`ndarray`][@stdlib/ndarray/ctor] and a read-only view of the last element(s) along a specified dimension.
23+
> Return an array containing a read-only truncated view of an input [`ndarray`][@stdlib/ndarray/ctor] and a read-only view of the last element(s) along a specific dimension.
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

@@ -42,7 +42,7 @@ var pop = require( '@stdlib/ndarray/pop' );
4242

4343
#### pop( x\[, options] )
4444

45-
Returns an array containing a **read-only** truncated view of an input [`ndarray`][@stdlib/ndarray/ctor] and a **read-only** view of the last element(s) along a specified dimension.
45+
Returns an array containing a **read-only** truncated view of an input [`ndarray`][@stdlib/ndarray/ctor] and a **read-only** view of the last element(s) along a specific dimension.
4646

4747
```javascript
4848
var ndarray = require( '@stdlib/ndarray/ctor' );

lib/node_modules/@stdlib/ndarray/pop/docs/repl.txt

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

22
{{alias}}( x[, options] )
33
Returns an array containing a read-only truncated view of an input ndarray
4-
and a read-only view of the last element(s) along a specified dimension.
4+
and a read-only view of the last element(s) along a specific dimension.
55

66
Parameters
77
----------

lib/node_modules/@stdlib/ndarray/pop/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interface Options {
3333
}
3434

3535
/**
36-
* Returns an array containing a read-only truncated view of an input ndarray and a read-only view of the last element(s) along a specified dimension.
36+
* Returns an array containing a read-only truncated view of an input ndarray and a read-only view of the last element(s) along a specific dimension.
3737
*
3838
* @param x - input array
3939
* @param options - function options

lib/node_modules/@stdlib/ndarray/pop/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-
* Return an array containing a read-only truncated view of an input ndarray and a read-only view of the last element(s) along a specified dimension.
22+
* Return an array containing a read-only truncated view of an input ndarray and a read-only view of the last element(s) along a specific dimension.
2323
*
2424
* @module @stdlib/ndarray/pop
2525
*

lib/node_modules/@stdlib/ndarray/pop/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var format = require( '@stdlib/string/format' );
3131
// MAIN //
3232

3333
/**
34-
* Returns an array containing a read-only truncated view of an input ndarray and a read-only view of the last element(s) along a specified dimension.
34+
* Returns an array containing a read-only truncated view of an input ndarray and a read-only view of the last element(s) along a specific dimension.
3535
*
3636
* @param {ndarray} x - input array
3737
* @param {Object} options - functions options

lib/node_modules/@stdlib/ndarray/pop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/ndarray/pop",
33
"version": "0.0.0",
4-
"description": "Return an array containing a read-only truncated view of an input ndarray and a read-only view of the last element(s) along a specified dimension.",
4+
"description": "Return an array containing a read-only truncated view of an input ndarray and a read-only view of the last element(s) along a specific dimension.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)