Skip to content

Commit 2283e32

Browse files
chore: update bench
1 parent 17f6e7a commit 2283e32

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ for ( i = 0; i < 100; i++ ) {
117117
Computes the angle in the plane (in radians) between the positive x-axis and the ray from `(0,0)` to the point `(x,y)` for single-precision floating-point number.
118118

119119
```c
120-
float out = stdlib_base_atan2f( 2.0,f 2.0f );
120+
float out = stdlib_base_atan2f( 2.0f, 2.0f );
121121
// returns ~0.785f
122122
```
123123

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
#/
22
# @license Apache-2.0
33
#
44
# Copyright (c) 2025 The Stdlib Authors.

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
#include "stdlib/constants/float32/pinf.h"
4141
#include "stdlib/constants/float32/ninf.h"
4242
#include "stdlib/constants/float32/pi.h"
43-
#include <stdint.h>
4443

4544
// MAIN //
4645

0 commit comments

Comments
 (0)