Commit 6bb7bff274be004768ccedf76643383494e2a9dc

Vicent Martí 2013-07-02T14:43:44

Merge pull request #1696 from AndrejMitrovic/FixTypo [trivial] Fix small typo in docs for git_repository_message.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/git2/repository.h b/include/git2/repository.h
index 7cc4a13..c810519 100644
--- a/include/git2/repository.h
+++ b/include/git2/repository.h
@@ -471,7 +471,7 @@ GIT_EXTERN(int) git_repository_index(git_index **out, git_repository *repo);
  * @param out Buffer to write data into or NULL to just read required size
  * @param len Length of `out` buffer in bytes
  * @param repo Repository to read prepared message from
- * @return GIT_ENOUTFOUND if no message exists, other value < 0 for other
+ * @return GIT_ENOTFOUND if no message exists, other value < 0 for other
  *         errors, or total bytes in message (may be > `len`) on success
  */
 GIT_EXTERN(int) git_repository_message(char *out, size_t len, git_repository *repo);