Skip to content

Commit d3c2ccc

Browse files
committed
docs: resolve typos and documentation inconsistencies
--- 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: na - 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: na - 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 0528c15 commit d3c2ccc

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/blas/ext/base/zfill/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ var alpha = new Complex128( 10.0, 10.0 );
146146
zfill.ndarray( 2, alpha, x, 1, x.length-2 );
147147

148148
var y = x.get( 0 );
149-
// returns <Complex128>[ 1.0, 2.0]
149+
// returns <Complex128>[ 1.0, 2.0 ]
150150

151151
y = x.get( 1 );
152152
// returns <Complex128>[ 10.0, 10.0 ]
@@ -251,7 +251,7 @@ Fills a double-precision complex floating-point strided array `X` with a specifi
251251
double x[] = { 1.0, 2.0, 3.0, 4.0 };
252252
const stdlib_complex128_t alpha = stdlib_complex128( 2.0, 2.0 );
253253

254-
stdlib_strided_zfill_ndarray( 4, alpha, (stdlib_complex128_t *x), 1, 0 );
254+
stdlib_strided_zfill_ndarray( 4, alpha, (stdlib_complex128_t *)x, 1, 0 );
255255
```
256256
257257
The function accepts the following arguments:

lib/node_modules/@stdlib/object/any-own-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ limitations under the License.
4040
var anyOwnBy = require( '@stdlib/object/any-own-by' );
4141
```
4242

43-
#### anyBy( collection, predicate\[, thisArg ] )
43+
#### anyOwnBy( object, predicate\[, thisArg ] )
4444

4545
Tests whether at least one own property of a provided [`object`][mdn-object] passes a test implemented by a `predicate` function.
4646

lib/node_modules/@stdlib/object/none-own-by/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function noneOwnBy( obj, predicate, thisArg ) {
5656
var key;
5757

5858
if ( !isObject( obj ) ) {
59-
throw new TypeError( format(' invalid argument. First argument must be an object. Value: `%s`.', obj ) );
59+
throw new TypeError( format( 'invalid argument. First argument must be an object. Value: `%s`.', obj ) );
6060
}
6161
if ( !isFunction( predicate ) ) {
6262
throw new TypeError( format( 'invalid argument. Second argument must be a function. Value: `%s`.', predicate ) );

0 commit comments

Comments
 (0)