Skip to content

Commit 87f7e0f

Browse files
author
AndreyGeonya
committed
fix jsdoc paths
1 parent 947f392 commit 87f7e0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/data-structures/interval-tree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @example
55
*
6-
* var IT = require('../src/data-structures/interval-tree');
6+
* var IT = require('path-to-algorithm/src/data-structures/interval-tree');
77
* var intervalTree = new IT.IntervalTree();
88
*
99
* intervalTree.add([0, 100]);

src/data-structures/linked-list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* @example
55
*
6-
* var LL = require('../src/data-structures/linked-list');
6+
* var LL = require('path-to-algorithm/src/data-structures/linked-list');
77
*
88
* var linkedList = new LL.LinkedList();
99
*

0 commit comments

Comments
 (0)