Fix typo on Commit API

Proper function is 'git_commit_time_offset'.

Signed-off-by: Vicent Marti <tanoku@gmail.com>
This commit is contained in:
Vicent Marti 2011-01-13 04:34:23 +02:00
parent e52e38d380
commit c5846fbf24

View File

@ -104,7 +104,7 @@ GIT_EXTERN(time_t) git_commit_time(git_commit *commit);
* @param commit a previously loaded commit. * @param commit a previously loaded commit.
* @return positive or negative timezone offset, in minutes from UTC * @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. * Get the committer of a commit.