From 196c4659951dac9d0b7c68626cf24e5886529f22 Mon Sep 17 00:00:00 2001 From: qaqland Date: Wed, 31 Dec 2025 16:30:23 +0800 Subject: [PATCH] examples: correct `git_commit_time` comment --- examples/general.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/general.c b/examples/general.c index 7b8fa2ac5..727a406ed 100644 --- a/examples/general.c +++ b/examples/general.c @@ -374,7 +374,7 @@ static void commit_parsing(git_repository *repo) /** * Each of the properties of the commit object are accessible via methods, * including commonly needed variations, such as `git_commit_time` which - * returns the author time and `git_commit_message` which gives you the + * returns the committer time and `git_commit_message` which gives you the * commit message (as a NUL-terminated string). */ message = git_commit_message(commit);