Skip to content

Commit f101dfa

Browse files
committed
style: fix line wrapping and remove trailing whitespace
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: passed - 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 ca008ab commit f101dfa

File tree

1 file changed

+17
-17
lines changed
  • lib/node_modules/@stdlib/array/bool/docs

1 file changed

+17
-17
lines changed

lib/node_modules/@stdlib/array/bool/docs/repl.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -321,18 +321,18 @@
321321
----------
322322
target: integer
323323
Target start index position.
324-
324+
325325
start: integer
326326
Source start index position.
327-
327+
328328
end: integer (optional)
329329
Source end index position. Default: out.length.
330330

331331
Returns
332332
-------
333333
out: BooleanArray
334334
Modified array.
335-
335+
336336
Examples
337337
--------
338338
> var arr = new {{alias}}( [ true, false, false, true ] )
@@ -421,7 +421,7 @@
421421
-------
422422
out: BooleanArray
423423
Modified array.
424-
424+
425425
Examples
426426
--------
427427
> var arr = new {{alias}}( 3 )
@@ -461,7 +461,7 @@
461461
-------
462462
out: BooleanArray
463463
A new typed array.
464-
464+
465465
Examples
466466
--------
467467
> function predicate( v ) { return ( v === true ); };
@@ -633,7 +633,7 @@
633633

634634
thisArg: Any (optional)
635635
Execution context.
636-
636+
637637
Examples
638638
--------
639639
> var str = '%';
@@ -759,7 +759,7 @@
759759
-------
760760
iterator: Iterator
761761
Iterator for iterating over array index keys.
762-
762+
763763
Examples
764764
--------
765765
> var arr = new {{alias}}( [ true, false ] )
@@ -912,12 +912,12 @@
912912

913913
initialValue: any (optional)
914914
Initial accumulation value.
915-
915+
916916
Returns
917917
-------
918918
out: any
919919
Accumulated result.
920-
920+
921921
Examples
922922
--------
923923
> function reducer( acc, v ) { return ( acc && v ); };
@@ -1122,10 +1122,10 @@
11221122
----------
11231123
locales: string|Array (optional)
11241124
Locale identifier(s).
1125-
1125+
11261126
options: Object (optional)
11271127
An object containing serialization options.
1128-
1128+
11291129
Returns
11301130
-------
11311131
str: string
@@ -1221,7 +1221,7 @@
12211221
-------
12221222
iterator: Iterator
12231223
Iterator for iterating over array values.
1224-
1224+
12251225
Examples
12261226
--------
12271227
> var arr = new {{alias}}( [ true, false ] )
@@ -1236,22 +1236,22 @@
12361236

12371237

12381238
{{alias}}.prototype.with( index, value )
1239-
Returns a new typed array with the element at a provided index replaced
1240-
with a provided value.
1239+
Returns a new typed array with the element at a provided index replaced with
1240+
a provided value.
12411241

12421242
Parameters
12431243
----------
12441244
index: integer
12451245
Element index.
1246-
1246+
12471247
value: boolean
1248-
Element value.
1248+
Element value.
12491249

12501250
Returns
12511251
-------
12521252
out: BooleanArray
12531253
New typed array.
1254-
1254+
12551255
Examples
12561256
--------
12571257
> var arr = new {{alias}}( [ true, false, true ] )

0 commit comments

Comments
 (0)