Skip to content

Commit d72fd04

Browse files
committed
docs: fix require paths in examples
Signed-off-by: Athan <kgryte@gmail.com>
1 parent e776e3f commit d72fd04

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/object/bifurcate-in/lib

lib/node_modules/@stdlib/object/bifurcate-in/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* // e.g., returns [ [ 'beep', 'boop', 'bar' ], [ 'foo' ] ]
4747
*
4848
* @example
49-
* var bifurcateIn = require( '@stdlib/utils/bifurcate-in' );
49+
* var bifurcateIn = require( '@stdlib/object/bifurcate-in' );
5050
*
5151
* function predicate( v ) {
5252
* return v[ 0 ] === 'b';
@@ -71,7 +71,7 @@
7171
* // e.g., returns [ [ 'a', 'b', 'd' ], [ 'c' ] ]
7272
*
7373
* @example
74-
* var bifurcateIn = require( '@stdlib/utils/bifurcate-in' );
74+
* var bifurcateIn = require( '@stdlib/object/bifurcate-in' );
7575
*
7676
* function predicate( v ) {
7777
* return v[ 0 ] === 'b';

0 commit comments

Comments
 (0)