From adfb1e4993074fd478c96d3b9da30706e5dd030a Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Thu, 14 May 2026 16:25:26 +0000 Subject: [PATCH] patch-ids.h: add missing trailing parenthesis in documentation comment Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- patch-ids.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 * } */