Skip to content

Commit 46fd304

Browse files
authored
chore: follow-up fixes for recent commits
PR-URL: #12933 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent ae56fc5 commit 46fd304

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/fft/base/fftpack/cffti/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ function cffti( N, workspace, strideW, offsetW ) {
158158

159159
// When a sub-sequence is a single data point, the FFT is the identity, so no initialization necessary...
160160
if ( N === 1 ) {
161-
return;
161+
return workspace;
162162
}
163163
// Resolve the starting indices for storing twiddle factors and factorization results:
164164
offsetT = offsetW + ( 2*N*strideW ); // index offset for twiddle factors

lib/node_modules/@stdlib/number/uint64/base/assert/is-equal/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ tape( 'the function tests whether two 64-bit unsigned integers are equal', funct
5656
t.strictEqual( isEqual( a, b ), true, 'returns expected value' );
5757

5858
a = new Uint64( 1234 );
59-
a = new Uint64( 5678 );
59+
b = new Uint64( 5678 );
6060
t.strictEqual( isEqual( a, b ), false, 'returns expected value' );
6161

6262
if ( HAS_BIGINT ) {

lib/node_modules/@stdlib/number/uint64/base/to-words/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ a = new Uint64( 10000000000 );
8888
w = toWords( a );
8989
// returns [ 2, 1410065408 ]
9090

91-
a = new Uint64.of( 12, 34 );
91+
a = Uint64.of( 12, 34 );
9292
w = toWords( a );
9393
// returns [ 12, 34 ]
9494
```

lib/node_modules/@stdlib/number/uint64/base/to-words/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ w = toWords( a );
3131
console.log( w );
3232
// => [ 2, 1410065408 ]
3333

34-
a = new Uint64.of( 12, 34 );
34+
a = Uint64.of( 12, 34 );
3535
w = toWords( a );
3636
console.log( w );
3737
// => [ 12, 34 ]

0 commit comments

Comments
 (0)