Skip to content

Commit 296ea30

Browse files
authored
chore: fix EditorConfig lint errors
PR-URL: #7063 Closes: #7057 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 938905c commit 296ea30

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)