From d23bf5e73548d5fe52e9f8f1b191909d234ceb9c Mon Sep 17 00:00:00 2001 From: Osman Khwaja Date: Sun, 14 Jun 2020 17:19:55 -0700 Subject: [PATCH] use bytesize --- book/10-git-internals/sections/objects.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/10-git-internals/sections/objects.asc b/book/10-git-internals/sections/objects.asc index 8f793311c..c502e43c9 100644 --- a/book/10-git-internals/sections/objects.asc +++ b/book/10-git-internals/sections/objects.asc @@ -370,7 +370,7 @@ To that first part of the header, Git adds a space followed by the size in bytes [source,console] ---- ->> header = "blob #{content.length}\0" +>> header = "blob #{content.bytesize}\0" => "blob 16\u0000" ----