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; } }