Skip to content

Commit 821ef43

Browse files
committed
Auto-generated commit
1 parent a6756db commit 821ef43

File tree

4 files changed

+8
-15
lines changed

4 files changed

+8
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,8 @@ A total of 26 issues were closed in this release:
323323

324324
<details>
325325

326+
- [`2fee906`](https://github.com/stdlib-js/stdlib/commit/2fee906e7981ff2a9a0bf37bfcbfe3b77421bfcd) - **docs:** resolve lint failures _(by Athan Reines)_
327+
- [`989e453`](https://github.com/stdlib-js/stdlib/commit/989e45330b4284265444e286a926a693ec8518aa) - **docs:** update copy _(by Athan Reines)_
326328
- [`c4671b1`](https://github.com/stdlib-js/stdlib/commit/c4671b1cef6f00d28d483cfb9b558d9c1d5f81c9) - **docs:** resolve lint failures _(by Athan Reines)_
327329
- [`e776e3f`](https://github.com/stdlib-js/stdlib/commit/e776e3f55c8636a4d777c47a3f4b076d5523db33) - **remove:** remove `utils/bifurcate-in` _(by Neeraj Pathak)_
328330
- [`99d6070`](https://github.com/stdlib-js/stdlib/commit/99d60701eae79fec91f93de28cb68cd31a0bdfc1) - **refactor:** update paths _(by Neeraj Pathak)_

convert-path/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
Examples
1919
--------
2020
> var out = {{alias}}( '/c/foo/bar/beep.c', 'win32' )
21-
'c:\\foo\\bar\\beep.c'
21+
'c:\foo\bar\beep.c'
2222
> out = {{alias}}( '/c/foo/bar/beep.c', 'mixed' )
2323
'c:/foo/bar/beep.c'
2424
> out = {{alias}}( '/c/foo/bar/beep.c', 'posix' )
2525
'/c/foo/bar/beep.c'
2626
> out = {{alias}}( 'C:\\\\foo\\bar\\beep.c', 'win32' )
27-
'C:\\\\foo\\bar\\beep.c'
27+
'C:\\foo\bar\beep.c'
2828
> out = {{alias}}( 'C:\\\\foo\\bar\\beep.c', 'mixed' )
2929
'C:/foo/bar/beep.c'
3030
> out = {{alias}}( 'C:\\\\foo\\bar\\beep.c', 'posix' )

convert-path/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* @example
3131
* var p = convertPath( '/c/foo/bar/beep.c', 'win32' );
32-
* // returns 'c:\\foo\\bar\\beep.c'
32+
* // returns 'c:\foo\bar\beep.c'
3333
*
3434
* @example
3535
* var p = convertPath( '/c/foo/bar/beep.c', 'mixed' );

escape-regexp-string/README.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var rescape = require( '@stdlib/utils/escape-regexp-string' );
4242

4343
#### rescape( str )
4444

45-
Escapes a [regular expression][mdn-regexp] `string` or pattern.
45+
Escapes a [regular expression][mdn-regexp] string or pattern.
4646

4747
```javascript
4848
var str = rescape( '/[A-Z]*/' );
@@ -52,17 +52,6 @@ str = rescape( '[A-Z]*' );
5252
// returns '\[A\-Z\]\*'
5353
```
5454

55-
If provided a value which is not a primitive `string`, the function **throws** a `TypeError`.
56-
57-
```javascript
58-
try {
59-
rescape( null );
60-
// throws an error...
61-
} catch ( err ) {
62-
console.error( err );
63-
}
64-
```
65-
6655
</section>
6756

6857
<!-- /.usage -->
@@ -88,6 +77,8 @@ try {
8877
| Vertical Bar | `&#124;` |
8978
| Question Mark | `?` |
9079

80+
- If the function is provided a value which is not a string, the function **throws** an error.
81+
9182
</section>
9283

9384
<!-- /.notes -->

0 commit comments

Comments
 (0)