Skip to content

Commit 8e7f070

Browse files
committed
chore: clean-up
--- 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: passed - task: lint_package_json status: na - task: lint_repl_help status: na - 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: passed - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 3920c11 commit 8e7f070

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

lib/node_modules/@stdlib/math/base/special/acovercos/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ double stdlib_base_acovercos( const double x );
166166
#include <stdio.h>
167167
168168
int main( void ) {
169-
const double x[] = { 0.0, 0.27, 0.56, 0.78, 1.67, 1.67, 1.78, 1.80, 1.89, 2.0 };
169+
const double x[] = { 0.0, 0.27, 0.56, 0.78, 1.67, 1.70, 1.78, 1.80, 1.89, 2.0 };
170170
171171
double v;
172172
int i;

lib/node_modules/@stdlib/math/base/special/acovercos/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <stdio.h>
2121

2222
int main( void ) {
23-
const double x[] = { 0.0, 0.27, 0.56, 0.78, 1.67, 1.67, 1.78, 1.80, 1.89, 2.0 };
23+
const double x[] = { 0.0, 0.27, 0.56, 0.78, 1.67, 1.70, 1.78, 1.80, 1.89, 2.0 };
2424

2525
double v;
2626
int i;

lib/node_modules/@stdlib/math/base/special/acovercos/test/fixtures/julia/runner.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ dir = dirname( file );
6565
x = range( 0.0, stop = 2.0, length = 2003 );
6666
gen( x, "data.json" );
6767

68-
# Generate fixture data for small negative values:
68+
# Generate fixture data for small positive values:
6969
x = range( 1e-208, stop = 1e-200, length = 2003 );
7070
gen( x, "small_positive.json" );

lib/node_modules/@stdlib/math/base/special/acovercos/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ tape( 'the function computes the inverse coversed cosine', function test( t ) {
6666
t.end();
6767
});
6868

69-
tape( 'the function computes the inverse coversed cosine (small negative numbers)', function test( t ) {
69+
tape( 'the function computes the inverse coversed cosine (small positive numbers)', function test( t ) {
7070
var expected;
7171
var delta;
7272
var tol;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ tape( 'the function computes the inverse coversed cosine', opts, function test(
7575
t.end();
7676
});
7777

78-
tape( 'the function computes the inverse coversed cosine (small negative numbers)', opts, function test( t ) {
78+
tape( 'the function computes the inverse coversed cosine (small positive numbers)', opts, function test( t ) {
7979
var expected;
8080
var delta;
8181
var tol;

0 commit comments

Comments
 (0)