Skip to content

Commit ee61759

Browse files
fix: example error
1 parent ef2c8b9 commit ee61759

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,6 @@ int main( void ) {
186186
## See Also
187187

188188
- <span class="package-name">[`@stdlib/math/base/special/atanf`][@stdlib/math/base/special/atanf]</span><span class="delimiter">: </span><span class="description">compute the arctangent of a single-precision floating-point number.</span>
189-
190189
- <span class="package-name">[`@stdlib/math/base/special/atan2`][@stdlib/math/base/special/atan2]</span><span class="delimiter">: </span><span class="description">compute the angle in the plane (in radians) between the positive x-axis and the ray from (0,0) to the point (x,y).</span>
191190

192191
</section>

lib/node_modules/@stdlib/math/base/special/atan2f/benchmark/c/native/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ int main( void ) {
126126

127127
print_version();
128128
for ( i = 0; i < REPEATS; i++ ) {
129-
printf( "# c::%s\n", NAME );
129+
printf( "# c::native::%s\n", NAME );
130130
elapsed = benchmark();
131131
print_results( elapsed );
132132
printf( "ok %d benchmark finished\n", i+1 );

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,13 @@
2020

2121
// MODULES //
2222

23+
var resolve = require( 'path' ).resolve;
2324
var tape = require( 'tape' );
2425
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
2526
var isNegativeZero = require( '@stdlib/math/base/assert/is-negative-zero' );
2627
var isPositiveZero = require( '@stdlib/math/base/assert/is-positive-zero' );
2728
var absf = require( '@stdlib/math/base/special/absf' );
29+
var tryRequire = require( '@stdlib/utils/try-require' );
2830
var EPS = require( '@stdlib/constants/float32/eps' );
2931
var PINF = require( '@stdlib/constants/float32/pinf' );
3032
var NINF = require( '@stdlib/constants/float32/ninf' );

0 commit comments

Comments
 (0)