Skip to content

Commit 12a15ec

Browse files
authored
docs: fix function alias in example
PR-URL: #7829 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 3a11e54 commit 12a15ec

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/ggemv/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/ggemv/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* var x = [ 1.0, 1.0, 1.0 ];
3131
* var y = [ 1.0, 1.0 ];
3232
*
33-
* dgemv( 'row-major', 'no-transpose', 2, 3, 1.0, A, 3, x, 1, 1.0, y, 1 );
33+
* ggemv( 'row-major', 'no-transpose', 2, 3, 1.0, A, 3, x, 1, 1.0, y, 1 );
3434
* // y => [ 7.0, 16.0 ]
3535
*
3636
* @example

0 commit comments

Comments
 (0)