Skip to content

Commit df5e6b8

Browse files
committed
chore: replace number strings with literals
--- 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: passed - 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: na - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 3c04537 commit df5e6b8

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

lib/node_modules/@stdlib/math/base/special/acos/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@
8787
},
8888
"domain": [
8989
{
90-
"min": "-1",
91-
"max": "1"
90+
"min": -1,
91+
"max": 1
9292
}
9393
],
9494
"rand": {

lib/node_modules/@stdlib/math/base/special/acosd/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@
8484
},
8585
"domain": [
8686
{
87-
"min": "-1",
88-
"max": "1"
87+
"min": -1,
88+
"max": 1
8989
}
9090
],
9191
"rand": {

lib/node_modules/@stdlib/math/base/special/acosdf/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@
8484
},
8585
"domain": [
8686
{
87-
"min": "-1",
88-
"max": "1"
87+
"min": -1,
88+
"max": 1
8989
}
9090
],
9191
"rand": {

lib/node_modules/@stdlib/math/base/special/acosf/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@
8787
},
8888
"domain": [
8989
{
90-
"min": "-1",
91-
"max": "1"
90+
"min": -1,
91+
"max": 1
9292
}
9393
],
9494
"rand": {

lib/node_modules/@stdlib/math/base/special/acosh/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
},
9292
"domain": [
9393
{
94-
"min": "1",
94+
"min": 1,
9595
"max": "infinity"
9696
}
9797
],

0 commit comments

Comments
 (0)