From 1a850a628217b2622774ffc24968f86ae48ee646 Mon Sep 17 00:00:00 2001 From: Neil Macneale IV Date: Tue, 11 Nov 2025 18:11:49 -0800 Subject: [PATCH] fix typos --- go/store/nbs/journal_inspect.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go/store/nbs/journal_inspect.go b/go/store/nbs/journal_inspect.go index 0c2bd89b75..77110a32c4 100644 --- a/go/store/nbs/journal_inspect.go +++ b/go/store/nbs/journal_inspect.go @@ -41,8 +41,8 @@ func JournalInspect(journalPath string, seeRoots, seeChunks, crcScan, snapScan b } // Counters for various conditions we want to report on. These counters require a little understanding of the - // scan logic below. For example, when we hit block of null butes, the number of zero length records will be high, - // but of we his a block of random non-null bytes, the number of large records will be very high. Look at the printed + // scan logic below. For example, when we hit a block of null bytes, the number of zero length records will be high, + // but if we hit a block of random non-null bytes, the number of large records will be very high. Look at the printed // scan log and the stats, and reason about what they mean together. numZeros := 0 // number of zero length records seen numTooLarge := 0 // number of over-large records seen