Skip to content

Commit ade8e97

Browse files
committed
Auto-generated commit
1 parent 11b3503 commit ade8e97

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

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+
- [`b721461`](https://github.com/stdlib-js/stdlib/commit/b721461895b04dd66f0915c76347244a7cc56148) - **docs:** 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ var bool = isComplexTypedArray( arr );
9999

100100
## Examples
101101

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

104104
<!-- eslint no-undef: "error" -->
105105

@@ -153,7 +153,7 @@ bool = isComplexTypedArray( new Uint8Array( 10 ) );
153153
bool = isComplexTypedArray( new Uint8ClampedArray( 10 ) );
154154
// returns false
155155

156-
bool = isComplexTypedArray({ 'length': 0 });
156+
bool = isComplexTypedArray( { 'length': 0 } );
157157
// returns false
158158
```
159159

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)