Skip to content

Commit 3024bb3

Browse files
committed
docs: fix section comments and lint errors in array and assert READMEs
--- 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: na - 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 3422651 commit 3024bb3

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

lib/node_modules/@stdlib/array/base/assert/is-accessor-array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ An accessor array is defined as either an [`Array`][mdn-array], [`Typed Array`][
2828

2929
</section>
3030

31-
<!-- ./intro -->
31+
<!-- /.intro -->
3232

3333
<section class="usage">
3434

@@ -125,7 +125,7 @@ bool = isAccessorArray( new Uint8Array( 10 ) );
125125
bool = isAccessorArray( new Uint8ClampedArray( 10 ) );
126126
// returns false
127127

128-
bool = isAccessorArray( { 'length': 0 } );
128+
bool = isAccessorArray({ 'length': 0 });
129129
// returns false
130130
```
131131

lib/node_modules/@stdlib/array/base/assert/is-booleanarray/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
</section>
2828

29-
<!-- ./intro -->
29+
<!-- /.intro -->
3030

3131
<section class="usage">
3232

@@ -124,7 +124,7 @@ bool = isBooleanArray( new Uint8Array( 10 ) );
124124
bool = isBooleanArray( new Uint8ClampedArray( 10 ) );
125125
// returns false
126126

127-
bool = isBooleanArray( { 'length': 0 } );
127+
bool = isBooleanArray({ 'length': 0 });
128128
// returns false
129129
```
130130

lib/node_modules/@stdlib/array/base/assert/is-complex-typed-array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
</section>
2828

29-
<!-- ./intro -->
29+
<!-- /.intro -->
3030

3131
<section class="usage">
3232

@@ -120,7 +120,7 @@ bool = isComplexTypedArray( new Uint8Array( 10 ) );
120120
bool = isComplexTypedArray( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplexTypedArray( { 'length': 0 } );
123+
bool = isComplexTypedArray({ 'length': 0 });
124124
// returns false
125125
```
126126

lib/node_modules/@stdlib/array/base/assert/is-complex128array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
</section>
2828

29-
<!-- ./intro -->
29+
<!-- /.intro -->
3030

3131
<section class="usage">
3232

@@ -120,7 +120,7 @@ bool = isComplex128Array( new Uint8Array( 10 ) );
120120
bool = isComplex128Array( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplex128Array( { 'length': 0 } );
123+
bool = isComplex128Array({ 'length': 0 });
124124
// returns false
125125
```
126126

lib/node_modules/@stdlib/array/base/assert/is-complex64array/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ limitations under the License.
2626

2727
</section>
2828

29-
<!-- ./intro -->
29+
<!-- /.intro -->
3030

3131
<section class="usage">
3232

@@ -120,7 +120,7 @@ bool = isComplex64Array( new Uint8Array( 10 ) );
120120
bool = isComplex64Array( new Uint8ClampedArray( 10 ) );
121121
// returns false
122122

123-
bool = isComplex64Array( { 'length': 0 } );
123+
bool = isComplex64Array({ 'length': 0 });
124124
// returns false
125125
```
126126

lib/node_modules/@stdlib/assert/is-accessor-array/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ An accessor array is defined as either an [`Array`][mdn-array], [`Typed Array`][
2828

2929
</section>
3030

31-
<!-- ./intro -->
31+
<!-- /.intro -->
3232

3333
<section class="usage">
3434

@@ -125,10 +125,10 @@ bool = isAccessorArray( new Uint8Array( 10 ) );
125125
bool = isAccessorArray( new Uint8ClampedArray( 10 ) );
126126
// returns false
127127

128-
bool = isAccessorArray( { 'length': 0 } );
128+
bool = isAccessorArray({ 'length': 0 });
129129
// returns false
130130

131-
bool = isAccessorArray( {} );
131+
bool = isAccessorArray({});
132132
// returns false
133133

134134
bool = isAccessorArray( 'beep' );

lib/node_modules/@stdlib/assert/is-collection/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ A collection is defined as either an [`Array`][mdn-array], [`Typed Array`][mdn-t
2828

2929
</section>
3030

31-
<!-- ./intro -->
31+
<!-- /.intro -->
3232

3333
<section class="usage">
3434

@@ -101,10 +101,10 @@ bool = isCollection( new Uint8Array( 10 ) );
101101
bool = isCollection( new Uint8ClampedArray( 10 ) );
102102
// returns true
103103

104-
bool = isCollection( { 'length': 0 } );
104+
bool = isCollection({ 'length': 0 });
105105
// returns true
106106

107-
bool = isCollection( {} );
107+
bool = isCollection({});
108108
// returns false
109109

110110
bool = isCollection( 'beep' );

0 commit comments

Comments
 (0)