From 0af9d9e0c38150ca9e39ab9a0af91bf9b9f511ff Mon Sep 17 00:00:00 2001 From: Mike <59291735+KleeKitz@users.noreply.github.com> Date: Mon, 20 Oct 2025 11:58:25 -0400 Subject: [PATCH] Fix typos in InMemHandler comments --- request-example.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/request-example.go b/request-example.go index 519b3b76..f003e711 100644 --- a/request-example.go +++ b/request-example.go @@ -20,7 +20,7 @@ const maxSymlinkFollows = 5 var errTooManySymlinks = errors.New("too many symbolic links") -// InMemHandler returns a Hanlders object with the test handlers. +// InMemHandler returns a Handlers object with the test handlers. func InMemHandler() Handlers { root := &root{ rootFile: &memFile{name: "/", modtime: time.Now(), isdir: true}, @@ -449,7 +449,7 @@ func (fs *root) Lstat(r *Request) (ListerAt, error) { return listerat{file}, nil } -// In memory file-system-y thing that the Hanlders live on +// In memory file-system-y thing that the Handlers live on type root struct { rootFile *memFile mockErr error