Skip to content

Commit b133e28

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent af34b02 commit b133e28

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/sapx

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/ext/base/sapx/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The function has the following parameters:
5050
- **x**: input [`Float32Array`][@stdlib/array/float32].
5151
- **stride**: index increment.
5252

53-
The `N` and `stride` parameters determine which elements in strided array are accessed at runtime. For example, to add a constant to every other element
53+
The `N` and `stride` parameters determine which elements in the strided array are accessed at runtime. For example, to add a constant to every other element
5454

5555
```javascript
5656
var Float32Array = require( '@stdlib/array/float32' );
@@ -94,7 +94,7 @@ The function has the following additional parameters:
9494

9595
- **offset**: starting index.
9696

97-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the `offset` parameter supports indexing semantics based on a starting index. For example, to access only the last three elements of the strided array `x`
97+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the `offset` parameter supports indexing semantics based on a starting index. For example, to access only the last three elements of the strided array
9898

9999
```javascript
100100
var Float32Array = require( '@stdlib/array/float32' );
@@ -113,7 +113,7 @@ sapx.ndarray( 3, 5.0, x, 1, x.length-3 );
113113

114114
## Notes
115115

116-
- If `N <= 0`, both functions return the strided array `x` unchanged.
116+
- If `N <= 0`, both functions return the input array unchanged.
117117

118118
</section>
119119

0 commit comments

Comments
 (0)