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 7, 2024
1 parent 0ab1299 commit e6c7cb6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 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>

- [`f33f82c`](https://github.com/stdlib-js/stdlib/commit/f33f82c44a8eb9557fc86fbe41a32fe816954a46) - **docs:** use operation name and style fixes in `math/base/special/aversinf` [(#2876)](https://github.com/stdlib-js/stdlib/pull/2876) _(by Gunj Joshi)_
- [`1233cc4`](https://github.com/stdlib-js/stdlib/commit/1233cc4f11b4ddd0c6e1c919085dc4b9fc6fa483) - **docs:** fix equations, whitespace, and line wrapping [(#2878)](https://github.com/stdlib-js/stdlib/pull/2878) _(by Gunj Joshi)_
- [`4e5bf6f`](https://github.com/stdlib-js/stdlib/commit/4e5bf6f7aa5de6b1b638e976ec5def4697a3b352) - **docs:** update examples [(#2875)](https://github.com/stdlib-js/stdlib/pull/2875) _(by Gunj Joshi, Athan Reines)_
- [`f13d569`](https://github.com/stdlib-js/stdlib/commit/f13d56957a00c6ffea87a0cc7fd243cd871a213f) - **docs:** update examples and fix whitespace [(#2865)](https://github.com/stdlib-js/stdlib/pull/2865) _(by Gunj Joshi, Athan Reines)_
Expand Down
4 changes: 2 additions & 2 deletions base/special/aversinf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.
-->

# Arcversinef
# aversinf

> Compute the [inverse versed sine][inverse-versed-sine] of a single-precision floating-point number (in radians).
Expand Down Expand Up @@ -128,7 +128,7 @@ for ( i = 0; i < x.length; i++ ) {

#### stdlib_base_aversinf( x )

Compute the [inverse versed sine][inverse-versed-sine] of a single-precision floating-point number (in radians).
Computes the [inverse versed sine][inverse-versed-sine] of a single-precision floating-point number (in radians).

```c
float out = stdlib_base_aversinf( 3.141592653589793f / 2.0f );
Expand Down
4 changes: 2 additions & 2 deletions base/special/aversinf/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

{{alias}}( x )
Computes the inverse versed sine of a single-precision
floating-point number (in radians).
Computes the inverse versed sine of a single-precision floating-
point number (in radians).

The inverse versed sine is defined as `acos(1-x)`.

Expand Down
2 changes: 1 addition & 1 deletion base/special/aversinf/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Computes the inverse versed sine of a single-precision floating-point number (in radians).
*
* @param x input value
* @return output value
* @return output value
*
* @example
* float out = stdlib_base_aversinf( 3.141592653589793f / 6.0f );
Expand Down

0 comments on commit e6c7cb6

Please sign in to comment.