patch-ids.h: add missing trailing parenthesis in documentation comment
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Elijah Newren committed
May 14, 2026 at 16:25 UTC
adfb1e4993074fd478c96d3b9da30706e5dd030a
1 file changed
+1
-1
patch-ids.h
+1
-1
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
* }
*/