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 17, 2024
1 parent f1aa21b commit 4b65bd2
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,8 @@ A total of 4 people contributed to this release. Thank you to the following cont

<details>

- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
- [`ed44fee`](https://github.com/stdlib-js/stdlib/commit/ed44feecb9eaa5e0849d1a533e5415624d0aa338) - **style:** use imperative in package.json description and end with period _(by Philipp Burckhardt)_
- [`0c994ee`](https://github.com/stdlib-js/stdlib/commit/0c994ee22c77c217aa48d6833e4e11ffe733e9bb) - **docs:** update descriptions and add structured package data [(#2914)](https://github.com/stdlib-js/stdlib/pull/2914) _(by Gunj Joshi, Athan Reines)_
- [`f51140f`](https://github.com/stdlib-js/stdlib/commit/f51140ffe79720148d77a5ea56e92911787a3175) - **chore:** add structured package data for `math/base/special/pow` [(#2912)](https://github.com/stdlib-js/stdlib/pull/2912) _(by Gunj Joshi)_
- [`2658654`](https://github.com/stdlib-js/stdlib/commit/265865470275173da9d6efb8c0c2c8b00eb2c999) - **chore:** add structured package data for `math/base/special/cbrt` [(#2909)](https://github.com/stdlib-js/stdlib/pull/2909) _(by Gunj Joshi)_
Expand Down
2 changes: 1 addition & 1 deletion base/assert/is-safe-integer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ bool = isSafeInteger( NaN );

#### stdlib_base_is_safe_integer( x )

Test if a finite [double-precision floating-point number][ieee754] is a safe integer.
Tests if a finite [double-precision floating-point number][ieee754] is a safe integer.

```c
#include <stdbool.h>
Expand Down
2 changes: 1 addition & 1 deletion base/special/acsch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ for ( i = 0; i < x.length; i++ ) {

#### stdlib_base_acsch( x )

Compute the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a double-precision floating-point number.
Computes the [hyperbolic arccosecant][inverse-hyperbolic-functions] of a double-precision floating-point number.

```c
double out = stdlib_base_acsch( 1.0 );
Expand Down
2 changes: 1 addition & 1 deletion base/special/ahavercos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ for ( i = 0; i < x.length; i++ ) {

#### stdlib_base_ahavercos( x )

Compute the [inverse half-value versed cosine][archavercosine] of a double-precision floating-point number (in radians).
Computes the [inverse half-value versed cosine][archavercosine] of a double-precision floating-point number (in radians).

```c
double out = stdlib_base_ahavercos( 0.0 );
Expand Down
2 changes: 1 addition & 1 deletion base/special/ahaversin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ for ( i = 0; i < x.length; i++ ) {

#### stdlib_base_ahaversin( x )

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

```c
double out = stdlib_base_ahaversin( 0.0 );
Expand Down
2 changes: 1 addition & 1 deletion base/special/avercos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ for ( i = 0; i < x.length; i++ ) {

#### stdlib_base_avercos( x )

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

```c
double out = stdlib_base_avercos( -3.141592653589793/2.0 );
Expand Down
2 changes: 1 addition & 1 deletion base/special/avercosf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ for ( i = 0; i < x.length; i++ ) {

#### stdlib_base_avercosf( x )

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

```c
float out = stdlib_base_avercosf( -3.141592653589793f / 2.0f );
Expand Down
2 changes: 1 addition & 1 deletion base/special/aversin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ for ( i = 0; i < x.length; i++ ) {

#### stdlib_base_aversin( x )

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

```c
double out = stdlib_base_aversin( 3.141592653589793/2.0 );
Expand Down
2 changes: 1 addition & 1 deletion base/special/cotd/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/math/base/special/cotd",
"version": "0.0.0",
"description": "Compute the cotangent of an angle measured in degrees",
"description": "Compute the cotangent of an angle measured in degrees.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
2 changes: 1 addition & 1 deletion base/special/fast/uint32-sqrt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ for ( i = 0; i < 101; i++ ) {

#### stdlib_base_fast_uint32_sqrt( x )

Compute an integer [square root][square-root].
Computes an integer [square root][square-root].

```c
#include <stdint.h>
Expand Down
2 changes: 1 addition & 1 deletion base/special/fibonacci-index/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ for ( i = 3; i < 79; i++ ) {

#### stdlib_base_fibonacci_index( F )

Compute the [Fibonacci number][fibonacci-number] index.
Computes the [Fibonacci number][fibonacci-number] index.

```c
double out = stdlib_base_fibonacci( 2 );
Expand Down
2 changes: 1 addition & 1 deletion base/special/tand/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/math/base/special/tand",
"version": "0.0.0",
"description": "Compute the tangent of an angle measured in degrees",
"description": "Compute the tangent of an angle measured in degrees.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down

0 comments on commit 4b65bd2

Please sign in to comment.