Skip to content

Commit a21e284

Browse files
committed
Fix require paths
1 parent 5e83c51 commit a21e284

File tree

2 files changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/regexp

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/regexp/function-name/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* @type {RegExp}
2626
*
2727
* @example
28-
* var RE_FUNCTION_NAME = require( '@stdlib/utils/regexp/function-name' );
28+
* var RE_FUNCTION_NAME = require( '@stdlib/regexp/function-name' );
2929
*
3030
* function fname( fcn ) {
3131
* return RE_FUNCTION_NAME.exec( fcn.toString() )[ 1 ];

lib/node_modules/@stdlib/regexp/native-function/lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* @type {RegExp}
2626
*
2727
* @example
28-
* var RE_NATIVE_FUNCTION = require( '@stdlib/utils/regexp/native-function' );
28+
* var RE_NATIVE_FUNCTION = require( '@stdlib/regexp/native-function' );
2929
*
3030
* function isNativeFunction( fcn ) {
3131
* return RE_NATIVE_FUNCTION.test( fcn.toString() );
@@ -48,7 +48,7 @@
4848
// MAIN //
4949

5050
/**
51-
* Matches a native function.
51+
* Match a native function.
5252
*
5353
* @constant
5454
* @type {RegExp}

0 commit comments

Comments
 (0)