Skip to content

Commit 5bdfcf1

Browse files
authored
fix: jsdoc examples
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent d466893 commit 5bdfcf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/dsyr2/lib/ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var addon = require( './../src/addon.node' );
5151
* var x = new Float64Array( [ 1.0, 2.0, 3.0 ] );
5252
* var y = new Float64Array( [ 1.0, 2.0, 3.0 ] );
5353
*
54-
* dsyr2( 'row-major', 'upper', 3, 1.0, x, 1, y, 1, A, 3 );
54+
* dsyr2( 'upper', 3, 1.0, x, 1, 0, y, 1, 0, A, 3, 1, 0 );
5555
* // A => <Float64Array>[ 3.0, 6.0, 9.0, 0.0, 9.0, 14.0, 0.0, 0.0, 19.0 ]
5656
*/
5757
function dsyr2( uplo, N, alpha, x, strideX, offsetX, y, strideY, offsetY, A, strideA1, strideA2, offsetA ) { // eslint-disable-line max-len, max-params

0 commit comments

Comments
 (0)