Skip to content

Commit 3813abb

Browse files
committed
Fix a typo in function call
1 parent 72433da commit 3813abb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/tree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Tree.prototype.entryByIndex = function(i) {
6565
* @return {TreeEntry}
6666
*/
6767
Tree.prototype.entryByName = function(name) {
68-
var entry = this.entryByname(name);
68+
var entry = this.entryByName(name);
6969
entry.parent = this;
7070
return entry;
7171
};

0 commit comments

Comments
 (0)