diff options
| author | Will Stamper <epmatsw@gmail.com> | 2014-12-04 21:06:59 -0600 |
|---|---|---|
| committer | Will Stamper <epmatsw@gmail.com> | 2014-12-04 21:06:59 -0600 |
| commit | b874629b2d5823b7f52055a9784cc2e34cd48efb (patch) | |
| tree | 6ce8a50295f3de1fc8ca00344b39dc180eb506e8 /examples/general.c | |
| parent | 8bfbe6988fe749a4970613db371a214f18fc5c9b (diff) | |
| download | libgit2-b874629b2d5823b7f52055a9784cc2e34cd48efb.tar.gz | |
Spelling fixes
Diffstat (limited to 'examples/general.c')
| -rw-r--r-- | examples/general.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/general.c b/examples/general.c index 8981cacab..706650b67 100644 --- a/examples/general.c +++ b/examples/general.c @@ -126,7 +126,7 @@ int main (int argc, char** argv) // We can read raw objects directly from the object database if we have // the oid (SHA) of the object. This allows us to access objects without - // knowing thier type and inspect the raw bytes unparsed. + // knowing their type and inspect the raw bytes unparsed. error = git_odb_read(&obj, odb, &oid); check_error(error, "finding object in repository"); @@ -402,7 +402,7 @@ int main (int argc, char** argv) // Now that we have the starting point pushed onto the walker, we start // asking for ancestors. It will return them in the sorting order we asked - // for as commit oids. We can then lookup and parse the commited pointed + // for as commit oids. We can then lookup and parse the committed pointed // at by the returned OID; note that this operation is specially fast // since the raw contents of the commit object will be cached in memory while ((git_revwalk_next(&oid, walk)) == 0) { |
