From 1f38fd578be6893c92b3b0d1b9f5ea1f938d52d7 Mon Sep 17 00:00:00 2001 From: Jes Cok Date: Tue, 14 Nov 2023 13:47:44 +0000 Subject: [PATCH] internal/zstd: s/thees/these/ Change-Id: I0e3dc4aadb7e8082c26653979a5e6caf5172f9df GitHub-Last-Rev: 000a903ab5d529cf434366fe6d3155221a3e250d GitHub-Pull-Request: golang/go#64117 Reviewed-on: https://go-review.googlesource.com/c/go/+/542195 Reviewed-by: Mauri de Souza Meneguzzo Reviewed-by: Than McIntosh LUCI-TryBot-Result: Go LUCI Auto-Submit: Bryan Mills Run-TryBot: Jes Cok TryBot-Result: Gopher Robot Reviewed-by: Bryan Mills --- src/internal/zstd/fse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/zstd/fse.go b/src/internal/zstd/fse.go index ea661d4499..f03a792ede 100644 --- a/src/internal/zstd/fse.go +++ b/src/internal/zstd/fse.go @@ -208,7 +208,7 @@ func (r *Reader) buildFSE(off int, norm []int16, table []fseEntry, tableBits int // We use these for literal/match/length values. // Those require mapping the symbol to a baseline value, // and then reading zero or more bits and adding the value to the baseline. -// Rather than looking thees up in separate tables, +// Rather than looking these up in separate tables, // we convert the FSE table to an FSE baseline table. type fseBaselineEntry struct { baseline uint32 // baseline for value that this entry represents -- 2.51.0