diff options
author | Ben Straub <bs@github.com> | 2013-07-15 20:45:18 -0700 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2013-07-15 20:45:18 -0700 |
commit | 4e05fa7db4a24f47f37539f58168242c68b5b821 (patch) | |
tree | 4689e3f544295a402a10c44c09c58255e2bde9fb | |
parent | f538515079bc3af9b5b69f727b0810e57684af81 (diff) | |
parent | 51b0397a66336cd9b45f5562c0fb147052c2e086 (diff) | |
download | libgit2-4e05fa7db4a24f47f37539f58168242c68b5b821.tar.gz |
Merge pull request #1731 from alindeman/patch-1
Small grammar fix in docs
-rw-r--r-- | include/git2/tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/tree.h b/include/git2/tree.h index 65d8cc16e..f1e7d0899 100644 --- a/include/git2/tree.h +++ b/include/git2/tree.h @@ -208,7 +208,7 @@ GIT_EXTERN(git_filemode_t) git_tree_entry_filemode(const git_tree_entry *entry); GIT_EXTERN(int) git_tree_entry_cmp(const git_tree_entry *e1, const git_tree_entry *e2); /** - * Convert a tree entry to the git_object it points too. + * Convert a tree entry to the git_object it points to. * * You must call `git_object_free()` on the object when you are done with it. * |