Skip to content

Commit 26bca24

Browse files
committed
fix: apply code suggestions
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 20fcad8 commit 26bca24

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/math/base/special/ceil10f/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
> var y = {{alias}}( 3.14 )
2222
10.0
2323
> y = {{alias}}( -4.2 )
24-
~-1.0
24+
-1.0
2525
> y = {{alias}}( -4.6 )
26-
~-1.0
26+
-1.0
2727
> y = {{alias}}( 9.5 )
2828
10.0
2929
> y = {{alias}}( 13.0 )

lib/node_modules/@stdlib/math/base/special/ceil10f/test/test.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ var opts = {
4141

4242
// TESTS //
4343

44-
tape( 'main export is a function', opts, opts, function test( t ) {
44+
tape( 'main export is a function', opts, function test( t ) {
4545
t.ok( true, __filename );
46-
t.strictEqual( typeof ceil10f, 'function', opts, 'main export is a function' );
46+
t.strictEqual( typeof ceil10f, 'function', 'main export is a function' );
4747
t.end();
4848
});
4949

0 commit comments

Comments
 (0)