Skip to content

Commit 94e35cc

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
2 parents 9ed1533 + f13ddb2 commit 94e35cc

File tree

37 files changed

+39
-39
lines changed

37 files changed

+39
-39
lines changed

lib/node_modules/@stdlib/math/base/assert/is-even/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a finite numeric value is an even number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-evenf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Test if a finite single-precision floating-point number is an even number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-integer/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a finite double-precision floating-point number is an integer.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-negative-finite/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a double-precision floating-point numeric value is a negative finite number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-nonnegative-finite/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a numeric value is a nonnegative finite number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-odd/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a finite double-precision floating-point number is an odd number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-positive-finite/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a double-precision floating-point numeric value is a positive finite number.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

lib/node_modules/@stdlib/math/base/assert/is-probability/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Tests if a double-precision floating-point number is a probability.
2424
*
2525
* @param x input value
26-
* @return output value
26+
* @return output value
2727
*
2828
* @example
2929
* #include <stdbool.h>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ static const double MOREBITS = 6.123233995736765886130e-17; // pi/2 = PIO2 + MOR
7272
* | IEEE | -1, 1 | 10^6 | 2.2e-16 | 6.5e-17 |
7373
*
7474
* @param x input value ( in radians )
75-
* @return output value
75+
* @return output value
7676
*
7777
* @example
7878
* double out = stdlib_base_acos( 0.0 );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static const double HUGE = 1 << 28; // 2**28
7070
* ```
7171
*
7272
* @param x input value
73-
* @return output value
73+
* @return output value
7474
*
7575
* @example
7676
* double out = stdlib_base_acosh( 1.0 );

0 commit comments

Comments
 (0)