Skip to content

Commit d5cc79e

Browse files
committed
Merge pull request #998 from adius/patch-1
Fix a typo in `Tree.prototype.entryByName`
2 parents 72433da + 3813abb commit d5cc79e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)