From c5846fbf24f5c88704b2faa2a0905515936c874b Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Thu, 13 Jan 2011 04:34:23 +0200 Subject: [PATCH] Fix typo on Commit API Proper function is 'git_commit_time_offset'. Signed-off-by: Vicent Marti --- src/git2/commit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git2/commit.h b/src/git2/commit.h index 328f78ada..4d0b2ab99 100644 --- a/src/git2/commit.h +++ b/src/git2/commit.h @@ -104,7 +104,7 @@ GIT_EXTERN(time_t) git_commit_time(git_commit *commit); * @param commit a previously loaded commit. * @return positive or negative timezone offset, in minutes from UTC */ -GIT_EXTERN(int) git_commit_timezone_offset(git_commit *commit); +GIT_EXTERN(int) git_commit_time_offset(git_commit *commit); /** * Get the committer of a commit.