Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 6, 2024
1 parent b8b5855 commit a0ca96f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ A total of 4 people contributed to this release. Thank you to the following cont

<details>

- [`b7e79ad`](https://github.com/stdlib-js/stdlib/commit/b7e79ad951c4e439ca972dc57dd88de9e38f814c) - **docs:** update function descriptions and fix style nits [(#2870)](https://github.com/stdlib-js/stdlib/pull/2870) _(by Gunj Joshi)_
- [`a294334`](https://github.com/stdlib-js/stdlib/commit/a294334209d981a41f61bda8fd222e1c555f0c5a) - **style:** fix spacing [(#2872)](https://github.com/stdlib-js/stdlib/pull/2872) _(by Gunj Joshi)_
- [`1f5dba3`](https://github.com/stdlib-js/stdlib/commit/1f5dba3820e6cc2283b593ec2bf4942404ddd3d2) - **style:** remove empty line [(#2869)](https://github.com/stdlib-js/stdlib/pull/2869) _(by Gunj Joshi)_
- [`b2268e5`](https://github.com/stdlib-js/stdlib/commit/b2268e57b78b3a774f37e984faebd95ac7c0ba69) - **feat:** add `math/base/special/acoversinf` [(#2860)](https://github.com/stdlib-js/stdlib/pull/2860 ) _(by Gunj Joshi)_
Expand Down
3 changes: 2 additions & 1 deletion base/special/atandf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

# atandf

> Compute the [arctangent][arctangent] in degrees of a single-precision floating-point number.
> Compute the [arctangent][arctangent] (in degrees) of a single-precision floating-point number.
<section class="usage">

Expand All @@ -36,6 +36,7 @@ Computes the [arctangent][arctangent] (in degrees) of a single-precision floatin

```javascript
var sqrtf = require( '@stdlib/math/base/special/sqrtf' );

var v = atandf( 0.0 );
// returns 0.0

Expand Down
1 change: 1 addition & 0 deletions base/special/atandf/lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ var addon = require( './../src/addon.node' );
/**
* Computes the arctangent (in degrees) of a single-precision floating-point number.
*
* @private
* @param {number} x - input value
* @returns {number} arctangent (in degrees)
*
Expand Down
2 changes: 1 addition & 1 deletion base/special/atandf/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/math/base/special/atandf",
"version": "0.0.0",
"description": "Compute the arctangent(in degrees) of a single-precision floating-point number.",
"description": "Compute the arctangent (in degrees) of a single-precision floating-point number.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
2 changes: 1 addition & 1 deletion base/special/atandf/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Computes the arctangent (in degrees) of a single-precision floating-point number.
*
* @param x input value
* @return evaluated rational function
* @return arctangent (in degrees)
*
* @example
* float out = stdlib_base_atandf( 0.5f );
Expand Down
2 changes: 1 addition & 1 deletion base/special/atandf/test/fixtures/julia/REQUIRE
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
julia 1.5
JSON 0.21
JSON 0.21

0 comments on commit a0ca96f

Please sign in to comment.