Skip to content

Commit a9fb57e

Browse files
committed
docs: update descriptions
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent d2994d4 commit a9fb57e

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

lib/node_modules/@stdlib/blas/ext/to-sortedhp/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function toSortedhp( x ) {
124124
}
125125
}
126126
xdt = getDType( x );
127-
if ( hasOwnProp( options, 'dtype' ) ) {
127+
if ( options && hasOwnProp( options, 'dtype' ) ) {
128128
ydt = options.dtype;
129129
if ( !isMostlySafeCast( xdt, ydt ) ) {
130130
throw new TypeError( format( 'invalid argument. First argument cannot be safely cast to the output data type. Data types: [%s, %s].', resolveStr( xdt ), resolveStr( ydt ) ) );

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var acosh = require( '@stdlib/math/base/special/acosh' );
3232

3333
#### acosh( x )
3434

35-
Computes the [hyperbolic arccosine][hyperbolic-arccosine] of double-precision floating-point number.
35+
Computes the [hyperbolic arccosine][hyperbolic-arccosine] of a double-precision floating-point number.
3636

3737
```javascript
3838
var v = acosh( 1.0 );
@@ -106,7 +106,7 @@ logEachMap( 'acosh(%0.4f) = %0.4f', x, acosh );
106106

107107
#### stdlib_base_acosh( x )
108108

109-
Computes the [hyperbolic arccosine][hyperbolic-arccosine] of double-precision floating-point number.
109+
Computes the [hyperbolic arccosine][hyperbolic-arccosine] of a double-precision floating-point number.
110110

111111
```c
112112
double out = stdlib_base_acosh( 1.0 );

lib/node_modules/@stdlib/math/base/special/acosh/include/stdlib/math/base/special/acosh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Computes the hyperbolic arccosine of double-precision floating-point number.
30+
* Computes the hyperbolic arccosine of a double-precision floating-point number.
3131
*/
3232
double stdlib_base_acosh( const double x );
3333

lib/node_modules/@stdlib/math/base/special/acosh/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
"$schema": "math/base@v1.0",
7777
"base_alias": "acosh",
7878
"alias": "acosh",
79-
"pkg_desc": "compute the hyperbolic arccosine of double-precision floating-point number",
80-
"desc": "computes the hyperbolic arccosine of double-precision floating-point number",
79+
"pkg_desc": "compute the hyperbolic arccosine of a double-precision floating-point number",
80+
"desc": "computes the hyperbolic arccosine of a double-precision floating-point number",
8181
"short_desc": "hyperbolic arccosine",
8282
"parameters": [
8383
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
static const double HUGE = 1 << 28; // 2**28
4242

4343
/**
44-
* Computes the hyperbolic arccosine of double-precision floating-point number.
44+
* Computes the hyperbolic arccosine of a double-precision floating-point number.
4545
*
4646
* ## Method
4747
*

lib/node_modules/@stdlib/math/base/special/acsch/include/stdlib/math/base/special/acsch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Computes the hyperbolic arccosecant of double-precision floating-point number.
30+
* Computes the hyperbolic arccosecant of a double-precision floating-point number.
3131
*/
3232
double stdlib_base_acsch( const double x );
3333

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include "stdlib/math/base/special/asinh.h"
2121

2222
/**
23-
* Computes the hyperbolic arccosecant of double-precision floating-point number.
23+
* Computes the hyperbolic arccosecant of a double-precision floating-point number.
2424
*
2525
* @param x input value
2626
* @return output value

lib/node_modules/@stdlib/math/base/special/asech/include/stdlib/math/base/special/asech.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Computes the hyperbolic arcsecant of double-precision floating-point number.
30+
* Computes the hyperbolic arcsecant of a double-precision floating-point number.
3131
*/
3232
double stdlib_base_asech( const double x );
3333

lib/node_modules/@stdlib/math/base/special/asinh/include/stdlib/math/base/special/asinh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Computes the hyperbolic arcsine of double-precision floating-point number.
30+
* Computes the hyperbolic arcsine of a double-precision floating-point number.
3131
*/
3232
double stdlib_base_asinh( const double x );
3333

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ static const double NEAR_ZERO = 1.0 / (1 << 28); // 2**-28
4343
static const double HUGE = 1 << 28; // 2**28
4444

4545
/**
46-
* Computes the hyperbolic arcsine of double-precision floating-point number.
46+
* Computes the hyperbolic arcsine of a double-precision floating-point number.
4747
*
4848
* ## Method
4949
*

0 commit comments

Comments
 (0)