Skip to content

Commit 1969fd5

Browse files
chore: update according to code review
Signed-off-by: Nakul Krishnakumar <nakulkrishnakumar86@gmail.com>
1 parent bb526d3 commit 1969fd5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/node_modules/@stdlib/math/base/special/fast/acoshf/benchmark/benchmark.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var bench = require( '@stdlib/bench' );
2525
var uniform = require( '@stdlib/random/array/uniform' );
2626
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
2727
var tryRequire = require( '@stdlib/utils/try-require' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930

3031

@@ -38,7 +39,7 @@ var opts = {
3839

3940
// MAIN //
4041

41-
bench( pkg+'::native', opts, function benchmark( b ) {
42+
bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
4243
var x;
4344
var y;
4445
var i;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( x )
3-
Computes the hyperbolic arccosine of a single-precision
4-
floating-point number.
3+
Computes the hyperbolic arccosine of a single-precision floating-point
4+
number.
55

66
The domain of `x` is restricted to `[1,+infinity)`. If `x < 1`, the function
77
will return `NaN`.

0 commit comments

Comments
 (0)