Skip to content

Commit ac035c4

Browse files
authored
docs: update punctuation
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 1d02fbf commit ac035c4

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ Note that indexing is relative to the first index. To introduce an offset, use [
7272
```javascript
7373
var Float64Array = require( '@stdlib/array/float64' );
7474

75-
// Initial array...
75+
// Initial array:
7676
var x0 = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
7777

78-
// Create an offset view...
78+
// Create an offset view:
7979
var x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // start at 2nd element
8080

81-
// Join elements...
81+
// Join elements:
8282
var str = gjoin( 3, '|', x1, 2 );
8383
// returns '2|4|6'
8484
```

0 commit comments

Comments
 (0)