Skip to content

Commit ed6306e

Browse files
committed
Auto-generated commit
1 parent 1b33e8e commit ed6306e

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
<details>
1414

15+
- [`cd6574f`](https://github.com/stdlib-js/stdlib/commit/cd6574f18432cbcc57d476f00bc58d255ac13f0a) - **style:** revert style changes _(by Athan Reines)_
1516
- [`3024bb3`](https://github.com/stdlib-js/stdlib/commit/3024bb37f70bf55295d9c4bf81107ff57c15ff8a) - **docs:** fix section comments and lint errors in `array` and `assert` READMEs _(by Philipp Burckhardt)_
1617

1718
</details>
@@ -24,8 +25,9 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

30+
- Athan Reines
2931
- Philipp Burckhardt
3032

3133
</section>

README.md

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

8989
## Examples
9090

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

9393
<!-- eslint no-undef: "error" -->
9494

@@ -134,10 +134,10 @@ bool = isCollection( new Uint8Array( 10 ) );
134134
bool = isCollection( new Uint8ClampedArray( 10 ) );
135135
// returns true
136136

137-
bool = isCollection({ 'length': 0 });
137+
bool = isCollection( { 'length': 0 } );
138138
// returns true
139139

140-
bool = isCollection({});
140+
bool = isCollection( {} );
141141
// returns false
142142

143143
bool = isCollection( 'beep' );

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)