Skip to content

Commit edc56ce

Browse files
committed
Ensure lines do not exceed 80 chars
1 parent 8d614d9 commit edc56ce

File tree

3 files changed

+8
-3
lines changed
  • lib/node_modules/@stdlib

3 files changed

+8
-3
lines changed

lib/node_modules/@stdlib/assert/has-define-properties-support/docs/repl.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
Returns
66
-------
77
bool: boolean
8-
Boolean indicating if an environment has `Object.defineProperties` support.
8+
Boolean indicating if an environment has `Object.defineProperties`
9+
support.
910

1011
Examples
1112
--------

lib/node_modules/@stdlib/assert/has-define-property-support/docs/repl.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
Returns
66
-------
77
bool: boolean
8-
Boolean indicating if an environment has `Object.defineProperty` support.
8+
Boolean indicating if an environment has `Object.defineProperty`
9+
support.
910

1011
Examples
1112
--------

lib/node_modules/@stdlib/utils/reduce-right/docs/repl.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@
3535

3636
Examples
3737
--------
38-
> function sum( acc, v ) { console.log( '%s: %d', acc, v ); return acc + v; };
38+
> function sum( acc, v ) {
39+
... console.log( '%s: %d', acc, v );
40+
... return acc + v;
41+
... };
3942
> var arr = [ 1.0, 2.0, 3.0 ];
4043
> var out = {{alias}}( arr, 0, sum )
4144
2: 3.0

0 commit comments

Comments
 (0)