From: Elijah Newren Date: Thu, 14 May 2026 16:25:26 +0000 (+0000) Subject: patch-ids.h: add missing trailing parenthesis in documentation comment X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=adfb1e4993074fd478c96d3b9da30706e5dd030a;p=thirdparty%2Fgit.git patch-ids.h: add missing trailing parenthesis in documentation comment Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- diff --git a/patch-ids.h b/patch-ids.h index 490d739371..57534ee722 100644 --- a/patch-ids.h +++ b/patch-ids.h @@ -37,7 +37,7 @@ int has_commit_patch_id(struct commit *commit, struct patch_ids *); * struct patch_id *cur; * for (cur = patch_id_iter_first(commit, ids); * cur; - * cur = patch_id_iter_next(cur, ids) { + * cur = patch_id_iter_next(cur, ids)) { * ... look at cur->commit * } */