Skip to content

Commit 14d45ee

Browse files
committed
chore: refer to the latest reference
--- 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: na - task: lint_javascript_src status: passed - 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: passed - 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 dfef35b commit 14d45ee

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/hypot

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/hypot/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var sqrt = require( '@stdlib/math/base/special/sqrt' );
5050
function hypot( x, y ) {
5151
var tmp;
5252

53-
// If one of the arguments is `+-infinity`, return `+infinity` even if the other argument is `NaN` (IEEE 754-2008)...
53+
// If one of the arguments is `+-infinity`, return `+infinity` even if the other argument is `NaN` (IEEE 754-2019)...
5454
if ( isInfinite( x ) || isInfinite( y ) ) {
5555
return PINF;
5656
}

lib/node_modules/@stdlib/math/base/special/hypot/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ double stdlib_base_hypot( const double x, const double y ) {
3838
double a;
3939
double b;
4040

41-
// If one of the arguments is `+-infinity`, return `+infinity` even if the other argument is `NaN` (IEEE 754-2008)...
41+
// If one of the arguments is `+-infinity`, return `+infinity` even if the other argument is `NaN` (IEEE 754-2019)...
4242
if ( stdlib_base_is_infinite( x ) || stdlib_base_is_infinite( y ) ) {
4343
return STDLIB_CONSTANT_FLOAT64_PINF;
4444
}

0 commit comments

Comments
 (0)