diff --git a/lib/node_modules/@stdlib/blas/ext/base/dindex-of-truthy/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/dindex-of-truthy/docs/repl.txt index 0c0317311641..63a2408cbbc4 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dindex-of-truthy/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/dindex-of-truthy/docs/repl.txt @@ -9,7 +9,7 @@ Indexing is relative to the first index. To introduce an offset, use a typed array view. - if `N <= 0`, the function returns `-1`. + If `N <= 0`, the function returns `-1`. Parameters ---------- diff --git a/lib/node_modules/@stdlib/blas/ext/base/dindex-of/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/dindex-of/docs/repl.txt index 96838d76cb17..aba41e1e989f 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dindex-of/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/dindex-of/docs/repl.txt @@ -9,7 +9,7 @@ Indexing is relative to the first index. To introduce an offset, use a typed array view. - if `N <= 0`, the function returns `-1`. + If `N <= 0`, the function returns `-1`. Parameters ---------- diff --git a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-truthy/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-truthy/docs/repl.txt index dce8bcc2bb29..9db73064820f 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-truthy/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-truthy/docs/repl.txt @@ -8,7 +8,7 @@ Indexing is relative to the first index. To introduce an offset, use a typed array view. - if `N <= 0`, the function returns `-1`. + If `N <= 0`, the function returns `-1`. Parameters ---------- diff --git a/lib/node_modules/@stdlib/blas/ext/base/gindex-of/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/gindex-of/docs/repl.txt index 7e6ce6bb995e..1c55282b286d 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/gindex-of/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/gindex-of/docs/repl.txt @@ -8,7 +8,7 @@ Indexing is relative to the first index. To introduce an offset, use a typed array view. - if `N <= 0`, the function returns `-1`. + If `N <= 0`, the function returns `-1`. Parameters ---------- diff --git a/lib/node_modules/@stdlib/blas/ext/base/sindex-of-truthy/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/sindex-of-truthy/docs/repl.txt index a585d4d7aa6a..aeca2eda0f85 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/sindex-of-truthy/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/sindex-of-truthy/docs/repl.txt @@ -9,7 +9,7 @@ Indexing is relative to the first index. To introduce an offset, use a typed array view. - if `N <= 0`, the function returns `-1`. + If `N <= 0`, the function returns `-1`. Parameters ---------- diff --git a/lib/node_modules/@stdlib/blas/ext/base/sindex-of/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/sindex-of/docs/repl.txt index 9cc1b77273f3..5fbb693f40b9 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/sindex-of/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/base/sindex-of/docs/repl.txt @@ -9,7 +9,7 @@ Indexing is relative to the first index. To introduce an offset, use a typed array view. - if `N <= 0`, the function returns `-1`. + If `N <= 0`, the function returns `-1`. Parameters ---------- diff --git a/lib/node_modules/@stdlib/regexp/color-hexadecimal/test/test.js b/lib/node_modules/@stdlib/regexp/color-hexadecimal/test/test.js index c20e96efd353..57cfe6865718 100644 --- a/lib/node_modules/@stdlib/regexp/color-hexadecimal/test/test.js +++ b/lib/node_modules/@stdlib/regexp/color-hexadecimal/test/test.js @@ -33,19 +33,16 @@ tape( 'main export is a function', function test( t ) { }); tape( 'attached to the main export is a regular expression to match full hexadecimal colors', function test( t ) { - t.ok( true, __filename ); t.strictEqual( reColorHexadecimal.REGEXP instanceof RegExp, true, '`REGEXP` export is a regular expression' ); t.end(); }); tape( 'attached to the main export is a regular expression to match shorthand hexadecimal colors', function test( t ) { - t.ok( true, __filename ); t.strictEqual( reColorHexadecimal.REGEXP_SHORTHAND instanceof RegExp, true, '`REGEXP_SHORTHAND` export is a regular expression' ); t.end(); }); tape( 'attached to the main export is a regular expression to match shorthand or full length hexadecimal colors', function test( t ) { - t.ok( true, __filename ); t.strictEqual( reColorHexadecimal.REGEXP_EITHER instanceof RegExp, true, '`REGEXP_EITHER` export is a regular expression' ); t.end(); });