]> git.ipfire.org Git - thirdparty/git.git/commitdiff
patch-ids.h: add missing trailing parenthesis in documentation comment
authorElijah Newren <newren@gmail.com>
Thu, 14 May 2026 16:25:26 +0000 (16:25 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 14 May 2026 19:24:54 +0000 (04:24 +0900)
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
patch-ids.h

index 490d739371666ef8f5fc2fec0d5cbea03178865e..57534ee72225601d92f0864a87657ea181d8aa17 100644 (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
  *   }
  */