all: Fix typos found by codespell (#8833)

This commit is contained in:
Dimitri Papadopoulos Orfanos
2023-03-21 08:07:28 +01:00
committed by GitHub
parent bc371eacf6
commit 526e21ae26
14 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ func listXattr(path string) ([]string, error) {
if errors.Is(err, unix.ERANGE) || size == len(buf) {
// Buffer is too small. Try again with a zero sized buffer to
// get the size, then allocate a buffer of the correct size. We
// inlude the size == len(buf) because apparently macOS doesn't
// include the size == len(buf) because apparently macOS doesn't
// return ERANGE as it should -- no harm done, just an extra
// read if we happened to need precisely 1024 bytes on the first
// pass.