Skip to content

Commit dc6d898

Browse files
committed
Auto-generated commit
1 parent 488c32f commit dc6d898

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
- name: 'Replace GitHub MathJax equations with SVGs'
154154
run: |
155155
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/```math\n([\s\S]+?)\n```\n\n//g'
156-
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/<!-- <div class="equation"(.*)(<\/div>\s*-->)/<div class="equation"$1<\/div>/sg'
156+
find . -type f -name '*.md' -print0 | xargs -0 perl -0777 -i -pe 's/<!-- <div class="equation"(.*?)(<\/div>\s*-->)/<div class="equation"$1<\/div>/sg'
157157
158158
# Replace GitHub links to individual packages with npm links:
159159
- name: 'Replace all GitHub links to individual packages with npm links'

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
<details>
1414

15+
- [`c33404a`](https://github.com/stdlib-js/stdlib/commit/c33404ab42f5cd06257f3f02843fa23393884e80) - **style:** remove extra space and address lint failures [(#13263)](https://github.com/stdlib-js/stdlib/pull/13263) _(by Philipp Burckhardt)_
1516
- [`a8be8d1`](https://github.com/stdlib-js/stdlib/commit/a8be8d1588388d3f20084bf4431dff14f4c7c7ed) - **docs:** update descriptions [(#13257)](https://github.com/stdlib-js/stdlib/pull/13257) _(by Philipp Burckhardt)_
1617
- [`fe7c274`](https://github.com/stdlib-js/stdlib/commit/fe7c2746799f98c42a15f5ab2240676bb9b5987d) - **docs:** fix errors and inconsistencies in `@stdlib/string` TypeScript declarations [(#12390)](https:-/github.com/stdlib-js/stdlib/pull/12390) _(by Philipp Burckhardt, Athan Reines)_
1718

docs/types/test.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ import replaceBefore = require( './index' );
3131
// The compiler throws an error if the function is provided arguments having invalid types...
3232
{
3333
replaceBefore( true, 'd', 'foo', 0 ); // $ExpectError
34-
replaceBefore( false, 'd' , 'foo', 0 ); // $ExpectError
35-
replaceBefore( 3, 'd' , 'foo', 0 ); // $ExpectError
36-
replaceBefore( [], 'd' , 'foo', 0 ); // $ExpectError
37-
replaceBefore( {}, 'd' , 'foo', 0 ); // $ExpectError
34+
replaceBefore( false, 'd', 'foo', 0 ); // $ExpectError
35+
replaceBefore( 3, 'd', 'foo', 0 ); // $ExpectError
36+
replaceBefore( [], 'd', 'foo', 0 ); // $ExpectError
37+
replaceBefore( {}, 'd', 'foo', 0 ); // $ExpectError
3838
replaceBefore( ( x: number ): number => x, 'd', 'foo', 0 ); // $ExpectError
3939

4040
replaceBefore( 'abc', true, 'foo', 0 ); // $ExpectError
4141
replaceBefore( 'abc', false, 'foo', 0 ); // $ExpectError
42-
replaceBefore( 'abc', 5 , 'foo', 0 ); // $ExpectError
42+
replaceBefore( 'abc', 5, 'foo', 0 ); // $ExpectError
4343
replaceBefore( 'abc', [], 'foo', 0 ); // $ExpectError
44-
replaceBefore( 'abc', {} , 'foo', 0 ); // $ExpectError
45-
replaceBefore( 'abc', ( x: number ): number => x , 'foo', 0 ); // $ExpectError
44+
replaceBefore( 'abc', {}, 'foo', 0 ); // $ExpectError
45+
replaceBefore( 'abc', ( x: number ): number => x, 'foo', 0 ); // $ExpectError
4646

4747
replaceBefore( 'abc', 'd', true, 0 ); // $ExpectError
4848
replaceBefore( 'abc', 'd', false, 0 ); // $ExpectError

0 commit comments

Comments
 (0)