Skip to content

Commit 539fcfd

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

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ console.log( 'Append array:', a );
172172

173173
var out = zeros( 13, 'generic' );
174174

175-
gediff( x.length, x, 1, 2, p, 1, 2, a, 1, out, 1 );
175+
gediff( x.length, x, 1, p.length, p, 1, a.length, a, 1, out, 1 );
176176
console.log( 'Output:', out );
177177
```
178178

lib/node_modules/@stdlib/blas/ext/base/gediff/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ console.log( 'Append array:', a );
3939

4040
var out = zeros( 13, 'generic' );
4141

42-
gediff( x.length, x, 1, 2, p, 1, 2, a, 1, out, 1 );
42+
gediff( x.length, x, 1, p.length, p, 1, a.length, a, 1, out, 1 );
4343
console.log( 'Output:', out );

0 commit comments

Comments
 (0)