Skip to content

Commit 3891490

Browse files
committed
fix: resolve lint errors
1 parent 1153c3e commit 3891490

File tree

23 files changed

+22
-22
lines changed

23 files changed

+22
-22
lines changed

lib/node_modules/@stdlib/complex/float32/base/mul-add/README.md

100755100644
File mode changed.

lib/node_modules/@stdlib/complex/float32/base/mul-add/benchmark/benchmark.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ bench( pkg+':assign', function benchmark( b ) {
6767
}
6868
b.pass( 'benchmark finished' );
6969
b.end();
70-
});
70+
});

lib/node_modules/@stdlib/complex/float32/base/mul-add/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ bench( pkg, function benchmark( b ) {
5757
}
5858
b.pass( 'benchmark finished' );
5959
b.end();
60-
});
60+
});

lib/node_modules/@stdlib/complex/float32/base/mul-add/benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ bench( pkg+'::native', opts, function benchmark( b ) {
6666
}
6767
b.pass( 'benchmark finished' );
6868
b.end();
69-
});
69+
});

lib/node_modules/@stdlib/complex/float32/base/mul-add/benchmark/benchmark.strided.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ bench( pkg+':strided', function benchmark( b ) {
6565
}
6666
b.pass( 'benchmark finished' );
6767
b.end();
68-
});
68+
});

lib/node_modules/@stdlib/complex/float32/base/mul-add/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,4 @@ int main( void ) {
148148
printf( "ok %d benchmark finished\n", i+1 );
149149
}
150150
print_summary( REPEATS, REPEATS );
151-
}
151+
}

lib/node_modules/@stdlib/complex/float32/base/mul-add/benchmark/c/native/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,4 @@ int main( void ) {
150150
printf( "ok %d benchmark finished\n", i+1 );
151151
}
152152
print_summary( REPEATS, REPEATS );
153-
}
153+
}

lib/node_modules/@stdlib/complex/float32/base/mul-add/benchmark/julia/benchmark.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,4 @@ function main()
141141
print_summary( repeats, repeats );
142142
end
143143

144-
main();
144+
main();

lib/node_modules/@stdlib/complex/float32/base/mul-add/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,4 @@ declare var muladd: MulAdd;
174174

175175
// EXPORTS //
176176

177-
export = muladd;
177+
export = muladd;

lib/node_modules/@stdlib/complex/float32/base/mul-add/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,4 +462,4 @@ import muladd = require( './index' );
462462
muladd.strided( z1, 1, 0, z2, 1, 0, z3, 1, 0, out ); // $ExpectError
463463
muladd.strided( z1, 1, 0, z2, 1, 0, z3, 1, 0, out, 1 ); // $ExpectError
464464
muladd.strided( z1, 1, 0, z2, 1, 0, z3, 1, 0, out, 1, 0, {} ); // $ExpectError
465-
}
465+
}

0 commit comments

Comments
 (0)