Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 40b1e63

Browse files
committedMay 22, 2025
chore: fix EditorConfig lint errors (issue stdlib-js#7057)
1 parent d3e9442 commit 40b1e63

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/regexp/dirname-windows

1 file changed

+2
-2
lines changed
 

‎lib/node_modules/@stdlib/regexp/dirname-windows/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var reDirnameWindows = require( '@stdlib/regexp/dirname-windows' );
3232

3333
#### reDirnameWindows()
3434

35-
Returns a [regular expression][regexp] to capture a Windows path [dirname][dirname].
35+
Returns a [regular expression][regexp] to capture a Windows path [dirname][dirname].
3636

3737
```javascript
3838
var RE_DIRNAME_WINDOWS = reDirnameWindows();
@@ -42,7 +42,7 @@ var dir = RE_DIRNAME_WINDOWS.exec( 'foo\\bar\\index.js' )[ 1 ];
4242

4343
#### reDirnameWindows.REGEXP
4444

45-
[Regular expression][regexp] to capture a Windows path [dirname][dirname].
45+
[Regular expression][regexp] to capture a Windows path [dirname][dirname].
4646

4747
```javascript
4848
var dir = reDirnameWindows.REGEXP.exec( 'foo\\bar\\index.js' )[ 1 ];

0 commit comments

Comments
 (0)
Please sign in to comment.