diff options
author | Oleksandr Redko <[email protected]> | 2023-05-22 20:11:12 +0300 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2023-06-19 09:26:29 +0200 |
commit | 9009c8cdca448e50704f7ecd1a3918c5919b0f37 (patch) | |
tree | 960aaa2b80a07c959360ad66fc79ebe7c0fa9632 /hugofs/fs.go | |
parent | 12dc9a6e4acd5280a3e8b1658cbb96669fa97057 (diff) | |
download | hugo-9009c8cdca448e50704f7ecd1a3918c5919b0f37.tar.gz hugo-9009c8cdca448e50704f7ecd1a3918c5919b0f37.zip |
all: Fix typos in function names and comments
Diffstat (limited to 'hugofs/fs.go')
-rw-r--r-- | hugofs/fs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hugofs/fs.go b/hugofs/fs.go index ce92a626d..9462afa24 100644 --- a/hugofs/fs.go +++ b/hugofs/fs.go @@ -175,7 +175,7 @@ func MakeReadableAndRemoveAllModulePkgDir(fs afero.Fs, dir string) (int, error) } // IsOsFs returns whether fs is an OsFs or if it fs wraps an OsFs. -// TODO(bep) make this nore robust. +// TODO(bep) make this more robust. func IsOsFs(fs afero.Fs) bool { var isOsFs bool WalkFilesystems(fs, func(fs afero.Fs) bool { |