Skip to content

Commit

Permalink
Fix bug in commit by passing in the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
beaugunderson authored and notatestuser committed Oct 12, 2013
1 parent 6dc6ce3 commit b52fcc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commit.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = class Commit
# Public: Get the commit's Tree.
#
# Returns Tree.
@tree = _.memoize => (new Tree this, tree)
@tree = _.memoize => (new Tree this.repo, tree)

# Public: Get the Commit's parent Commits.
#
Expand Down

0 comments on commit b52fcc4

Please sign in to comment.