diff options
author | Jakob Pfender <jpfender@elegosoft.com> | 2011-03-23 12:35:08 +0100 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-03-23 18:55:41 +0200 |
commit | c585f55ff454bfc2d97e2db6b10fd8eab31b119d (patch) | |
tree | bc3d1968f67c63719696677b2f54d8ee3900bf02 | |
parent | f6f72d7ef8091bf1fcf19f284e1db62a43f93381 (diff) | |
download | libgit2-c585f55ff454bfc2d97e2db6b10fd8eab31b119d.tar.gz |
common.h: Fix minor typos
Fix a few minor typos in the documentation of the GIT_ERROR codes.
-rw-r--r-- | include/git2/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/common.h b/include/git2/common.h index 7cfb8982e..57ab9c1ff 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -119,13 +119,13 @@ /** The object type is invalid or doesn't match */ #define GIT_EINVALIDTYPE (GIT_ERROR - 8) -/** The object cannot be written that because it's missing internal data */ +/** The object cannot be written because it's missing internal data */ #define GIT_EMISSINGOBJDATA (GIT_ERROR - 9) /** The packfile for the ODB is corrupted */ #define GIT_EPACKCORRUPTED (GIT_ERROR - 10) -/** Failed to adquire or release a file lock */ +/** Failed to acquire or release a file lock */ #define GIT_EFLOCKFAIL (GIT_ERROR - 11) /** The Z library failed to inflate/deflate an object's data */ @@ -146,7 +146,7 @@ /** The specified symbolic reference is too deeply nested */ #define GIT_ETOONESTEDSYMREF (GIT_ERROR - 17) -/** The pack-refs file is either corrupted of its format is not currently supported */ +/** The pack-refs file is either corrupted or its format is not currently supported */ #define GIT_EPACKEDREFSCORRUPTED (GIT_ERROR - 18) /** The path is invalid */ |