From 81b05921ec553e1adf29705b84fbfb610690ec88 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Mon, 20 Apr 2026 17:48:12 -0700 Subject: [PATCH] fix log typo --- git.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git.zig b/git.zig index 2af8eb62e8c1d1ab3aa2274c9c23a6584449ad09..8fd6447d9d76f2b8009f5d5cc63b3dfb4fe28576 100644 --- a/git.zig +++ b/git.zig @@ -1365,14 +1365,14 @@ pub const Repository = struct { found += 1; result.putAssumeCapacity(k, commit_id_prev); set.set(i); - // std.log.debug("found [{d}/{d}] object after searching {d} commits", .{ found, total, searched }); + // std.log.debug("found [{d}/{d}] objects after searching {d} commits", .{ found, total, searched }); continue; } if (!std.mem.eql(u8, new.?.id.erase(), original.id.erase())) { found += 1; result.putAssumeCapacity(k, commit_id_prev); set.set(i); - // std.log.debug("found [{d}/{d}] object after searching {d} commits", .{ found, total, searched }); + // std.log.debug("found [{d}/{d}] objects after searching {d} commits", .{ found, total, searched }); continue; } } -- 2.54.0