Skip to content

Commit 71b11b2

Browse files
committed
Auto-generated commit
1 parent 5caeb93 commit 71b11b2

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ A total of 35 issues were closed in this release:
157157

158158
<details>
159159

160+
- [`cd6574f`](https://github.com/stdlib-js/stdlib/commit/cd6574f18432cbcc57d476f00bc58d255ac13f0a) - **style:** revert style changes _(by Athan Reines)_
160161
- [`3024bb3`](https://github.com/stdlib-js/stdlib/commit/3024bb37f70bf55295d9c4bf81107ff57c15ff8a) - **docs:** fix section comments and lint errors in `array` and `assert` READMEs _(by Philipp Burckhardt)_
161162
- [`078b193`](https://github.com/stdlib-js/stdlib/commit/078b19390e586d8fd746133f6f51f65a513da49b) - **docs:** fix orphaned section comments in `assert/is-*` READMEs _(by Philipp Burckhardt)_
162163
- [`b7879ad`](https://github.com/stdlib-js/stdlib/commit/b7879adce2d3bf7a6a1d4e626fd60172b3e33155) - **docs:** fix missing and malformed section closing tags in README files _(by Philipp Burckhardt)_

is-accessor-array/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var bool = isAccessorArray( arr );
7171

7272
## Examples
7373

74-
<!-- eslint-disable object-curly-newline -->
74+
<!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
7575

7676
<!-- eslint no-undef: "error" -->
7777

@@ -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' );

is-accessor-array/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
19+
/* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

is-collection/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ var bool = isCollection( [] );
5555

5656
## Examples
5757

58-
<!-- eslint-disable object-curly-newline -->
58+
<!-- eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing -->
5959

6060
<!-- eslint no-undef: "error" -->
6161

@@ -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' );

is-collection/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable object-curly-newline */
19+
/* eslint-disable object-curly-newline, stdlib/eol-open-bracket-spacing, stdlib/line-closing-bracket-spacing */
2020

2121
'use strict';
2222

0 commit comments

Comments
 (0)