diff options
author | Namjae Jeon <namjae.jeon@samsung.com> | 2020-08-14 04:03:46 +0200 |
---|---|---|
committer | Namjae Jeon <namjae.jeon@samsung.com> | 2020-10-22 01:29:10 +0200 |
commit | 9e456aeaacb6b44c5d8f858800d53c1958daad3d (patch) | |
tree | 414cbd540939a0a8fdaf456b414f4d90092b21ea /fs/exfat/exfat_fs.h | |
parent | Linux 5.9 (diff) | |
download | linux-9e456aeaacb6b44c5d8f858800d53c1958daad3d.tar.xz linux-9e456aeaacb6b44c5d8f858800d53c1958daad3d.zip |
exfat: fix misspellings using codespell tool
Sedat reported typos using codespell tool.
$ codespell fs/exfat/*.c | grep -v iput
fs/exfat/namei.c:293: upto ==> up to
fs/exfat/nls.c:14: tabel ==> table
$ codespell fs/exfat/*.h
fs/exfat/exfat_fs.h:133: usally ==> usually
Fix typos found by codespell.
Reported-by: Sedat Dilek <sedat.dilek@gmail.com>
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Diffstat (limited to 'fs/exfat/exfat_fs.h')
-rw-r--r-- | fs/exfat/exfat_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/exfat/exfat_fs.h b/fs/exfat/exfat_fs.h index c013fe931d9c..49af03660d6c 100644 --- a/fs/exfat/exfat_fs.h +++ b/fs/exfat/exfat_fs.h @@ -128,7 +128,7 @@ enum { struct exfat_dentry_namebuf { char *lfn; - int lfnbuf_len; /* usally MAX_UNINAME_BUF_SIZE */ + int lfnbuf_len; /* usually MAX_UNINAME_BUF_SIZE */ }; /* unicode name structure */ |