From b5407960b0d512153e39e00af3a5a063977be944 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sat, 14 Mar 2026 13:39:16 -0700 Subject: [PATCH] rename getObject -> getObjectContent --- git.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git.zig b/git.zig index ece5647d243797ad88fe78b1855efe1141172a7b..254a5181b389b1a21cc16408cf30ed05d09cc789 100644 --- a/git.zig +++ b/git.zig @@ -106,7 +106,7 @@ pub fn ensureObjId(comptime T: type, input: string) T { // TODO make this return a Reader when we implement it ourselves // https://git-scm.com/book/en/v2/Git-Internals-Git-Objects // https://git-scm.com/book/en/v2/Git-Internals-Packfiles -pub fn getObject(alloc: std.mem.Allocator, dir: nfs.Dir, obj: Id) !string { +pub fn getObjectContent(alloc: std.mem.Allocator, dir: nfs.Dir, obj: Id) !string { const t = tracer.trace(@src(), " {s}", .{obj}); defer t.end(); -- 2.54.0