From 4b65bd2f9130b11811b09edd725c9e71af652127 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Tue, 17 Sep 2024 14:14:30 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 2 ++ base/assert/is-safe-integer/README.md | 2 +- base/special/acsch/README.md | 2 +- base/special/ahavercos/README.md | 2 +- base/special/ahaversin/README.md | 2 +- base/special/avercos/README.md | 2 +- base/special/avercosf/README.md | 2 +- base/special/aversin/README.md | 2 +- base/special/cotd/package.json | 2 +- base/special/fast/uint32-sqrt/README.md | 2 +- base/special/fibonacci-index/README.md | 2 +- base/special/tand/package.json | 2 +- 12 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2dddfbf1..d5088d7ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -387,6 +387,8 @@ A total of 4 people contributed to this release. Thank you to the following cont
+- [`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)_ diff --git a/base/assert/is-safe-integer/README.md b/base/assert/is-safe-integer/README.md index b72c9fc68..185236c16 100644 --- a/base/assert/is-safe-integer/README.md +++ b/base/assert/is-safe-integer/README.md @@ -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 diff --git a/base/special/acsch/README.md b/base/special/acsch/README.md index b8a248d79..059714f73 100644 --- a/base/special/acsch/README.md +++ b/base/special/acsch/README.md @@ -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 ); diff --git a/base/special/ahavercos/README.md b/base/special/ahavercos/README.md index e1b2c233b..f9a6c4721 100644 --- a/base/special/ahavercos/README.md +++ b/base/special/ahavercos/README.md @@ -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 ); diff --git a/base/special/ahaversin/README.md b/base/special/ahaversin/README.md index 50edaf76e..b2f53f0da 100644 --- a/base/special/ahaversin/README.md +++ b/base/special/ahaversin/README.md @@ -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 ); diff --git a/base/special/avercos/README.md b/base/special/avercos/README.md index 21be3a491..c07dc33b3 100644 --- a/base/special/avercos/README.md +++ b/base/special/avercos/README.md @@ -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 ); diff --git a/base/special/avercosf/README.md b/base/special/avercosf/README.md index 567234696..b8c015ffb 100644 --- a/base/special/avercosf/README.md +++ b/base/special/avercosf/README.md @@ -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 ); diff --git a/base/special/aversin/README.md b/base/special/aversin/README.md index b79120c33..680e173d5 100644 --- a/base/special/aversin/README.md +++ b/base/special/aversin/README.md @@ -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 ); diff --git a/base/special/cotd/package.json b/base/special/cotd/package.json index 18636023c..8ca56a79d 100644 --- a/base/special/cotd/package.json +++ b/base/special/cotd/package.json @@ -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", diff --git a/base/special/fast/uint32-sqrt/README.md b/base/special/fast/uint32-sqrt/README.md index 231bdc308..ed4bca73f 100644 --- a/base/special/fast/uint32-sqrt/README.md +++ b/base/special/fast/uint32-sqrt/README.md @@ -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 diff --git a/base/special/fibonacci-index/README.md b/base/special/fibonacci-index/README.md index 831d816e0..54bbb89b2 100644 --- a/base/special/fibonacci-index/README.md +++ b/base/special/fibonacci-index/README.md @@ -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 ); diff --git a/base/special/tand/package.json b/base/special/tand/package.json index 6a0b7e03f..d0f01d679 100644 --- a/base/special/tand/package.json +++ b/base/special/tand/package.json @@ -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",