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>
main
Elijah Newren 2026-05-14 16:25:26 +00:00 committed by Junio C Hamano
parent 7f582faa06
commit adfb1e4993
1 changed files with 1 additions and 1 deletions

View File

@ -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
* }
*/