diff options
Diffstat (limited to 'plumbing/object/commit.go')
-rw-r--r-- | plumbing/object/commit.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plumbing/object/commit.go b/plumbing/object/commit.go index adac4f9..0a20ae6 100644 --- a/plumbing/object/commit.go +++ b/plumbing/object/commit.go @@ -30,9 +30,9 @@ type Commit struct { Committer Signature // Message is the commit message, contains arbitrary text. Message string - // TreeHash hash of the tree pointed by the commit. + // TreeHash is the hash of the root tree of the commit. TreeHash plumbing.Hash - // ParentHashes hashes of the parent commits of the commit. + // ParentHashes are the hashes of the parent commits of the commit. ParentHashes []plumbing.Hash s storer.EncodedObjectStorer |