Linux Documentation
 help / color / mirror / Atom feed
* [PATCH] docs: filesystems: vfat: fix 'whic' spelling
@ 2026-07-26  6:49 shaikh.kamal
  2026-07-26  8:31 ` OGAWA Hirofumi
  0 siblings, 1 reply; 4+ messages in thread
From: shaikh.kamal @ 2026-07-26  6:49 UTC (permalink / raw)
  To: OGAWA Hirofumi, Jonathan Corbet, Shuah Khan; +Cc: linux-doc, linux-kernel

Fix spelling error reported by codespell: whic -> which.
No functional change.

Signed-off-by: shaikh.kamal <shaikhkamal2012@gmail.com>
---
 Documentation/filesystems/vfat.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/filesystems/vfat.rst b/Documentation/filesystems/vfat.rst
index b289c4449cd0..f408699ce50f 100644
--- a/Documentation/filesystems/vfat.rst
+++ b/Documentation/filesystems/vfat.rst
@@ -361,7 +361,7 @@ the following:
 
                 <proceeding files...>
                 <slot #3, id = 0x43, characters = "h is long">
-                <slot #2, id = 0x02, characters = "xtension whic">
+                <slot #2, id = 0x02, characters = "xtension which">
                 <slot #1, id = 0x01, characters = "My Big File.E">
                 <directory entry, name = "MYBIGFIL.EXT">
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] docs: filesystems: vfat: fix 'whic' spelling
  2026-07-26  6:49 [PATCH] docs: filesystems: vfat: fix 'whic' spelling shaikh.kamal
@ 2026-07-26  8:31 ` OGAWA Hirofumi
  2026-07-26  9:35   ` shaikh kamaluddin
  0 siblings, 1 reply; 4+ messages in thread
From: OGAWA Hirofumi @ 2026-07-26  8:31 UTC (permalink / raw)
  To: shaikh.kamal; +Cc: Jonathan Corbet, Shuah Khan, linux-doc, linux-kernel

"shaikh.kamal" <shaikhkamal2012@gmail.com> writes:

> Fix spelling error reported by codespell: whic -> which.
> No functional change.

Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>

> Signed-off-by: shaikh.kamal <shaikhkamal2012@gmail.com>
> ---
>  Documentation/filesystems/vfat.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/filesystems/vfat.rst b/Documentation/filesystems/vfat.rst
> index b289c4449cd0..f408699ce50f 100644
> --- a/Documentation/filesystems/vfat.rst
> +++ b/Documentation/filesystems/vfat.rst
> @@ -361,7 +361,7 @@ the following:
>  
>                  <proceeding files...>
>                  <slot #3, id = 0x43, characters = "h is long">
> -                <slot #2, id = 0x02, characters = "xtension whic">
> +                <slot #2, id = 0x02, characters = "xtension which">
>                  <slot #1, id = 0x01, characters = "My Big File.E">
>                  <directory entry, name = "MYBIGFIL.EXT">

-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] docs: filesystems: vfat: fix 'whic' spelling
  2026-07-26  8:31 ` OGAWA Hirofumi
@ 2026-07-26  9:35   ` shaikh kamaluddin
  2026-07-26  9:41     ` OGAWA Hirofumi
  0 siblings, 1 reply; 4+ messages in thread
From: shaikh kamaluddin @ 2026-07-26  9:35 UTC (permalink / raw)
  To: OGAWA Hirofumi; +Cc: Jonathan Corbet, Shuah Khan, linux-doc, linux-kernel

On Sun, Jul 26, 2026 at 05:31:26PM +0900, OGAWA Hirofumi wrote:
> "shaikh.kamal" <shaikhkamal2012@gmail.com> writes:
> 
> > Fix spelling error reported by codespell: whic -> which.
> > No functional change.
> 
> Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
> 
> > Signed-off-by: shaikh.kamal <shaikhkamal2012@gmail.com>
> > ---
> >  Documentation/filesystems/vfat.rst | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/Documentation/filesystems/vfat.rst b/Documentation/filesystems/vfat.rst
> > index b289c4449cd0..f408699ce50f 100644
> > --- a/Documentation/filesystems/vfat.rst
> > +++ b/Documentation/filesystems/vfat.rst
> > @@ -361,7 +361,7 @@ the following:
> >  
> >                  <proceeding files...>
> >                  <slot #3, id = 0x43, characters = "h is long">
> > -                <slot #2, id = 0x02, characters = "xtension whic">
> > +                <slot #2, id = 0x02, characters = "xtension which">
> >                  <slot #1, id = 0x01, characters = "My Big File.E">
> >                  <directory entry, name = "MYBIGFIL.EXT">
> 
> -- 
> OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>

Hi,

Please drop this patch — I got it wrong. The "whic" here is
intentional: each LFN slot holds 13 characters, and the word
"which" is deliberately split across slot #2 ("xtension whic")
and slot #3 ("h is long"). The concatenated name is
"My Big File.Extension which is long".

My change makes slot #2 fourteen characters and would render the
example incorrect. Sorry for the noise, and thanks for the ack —
but it shouldn't be applied.

Thanks,
Kamal

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] docs: filesystems: vfat: fix 'whic' spelling
  2026-07-26  9:35   ` shaikh kamaluddin
@ 2026-07-26  9:41     ` OGAWA Hirofumi
  0 siblings, 0 replies; 4+ messages in thread
From: OGAWA Hirofumi @ 2026-07-26  9:41 UTC (permalink / raw)
  To: shaikh kamaluddin; +Cc: Jonathan Corbet, Shuah Khan, linux-doc, linux-kernel

shaikh kamaluddin <shaikhkamal2012@gmail.com> writes:

>> > diff --git a/Documentation/filesystems/vfat.rst b/Documentation/filesystems/vfat.rst
>> > index b289c4449cd0..f408699ce50f 100644
>> > --- a/Documentation/filesystems/vfat.rst
>> > +++ b/Documentation/filesystems/vfat.rst
>> > @@ -361,7 +361,7 @@ the following:
>> >  
>> >                  <proceeding files...>
>> >                  <slot #3, id = 0x43, characters = "h is long">
>> > -                <slot #2, id = 0x02, characters = "xtension whic">
>> > +                <slot #2, id = 0x02, characters = "xtension which">
>> >                  <slot #1, id = 0x01, characters = "My Big File.E">
>> >                  <directory entry, name = "MYBIGFIL.EXT">
>> 
>> -- 
>> OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
>
> Hi,
>
> Please drop this patch — I got it wrong. The "whic" here is
> intentional: each LFN slot holds 13 characters, and the word
> "which" is deliberately split across slot #2 ("xtension whic")
> and slot #3 ("h is long"). The concatenated name is
> "My Big File.Extension which is long".
>
> My change makes slot #2 fourteen characters and would render the
> example incorrect. Sorry for the noise, and thanks for the ack —
> but it shouldn't be applied.

Thanks for telling.
-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-07-26  9:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-26  6:49 [PATCH] docs: filesystems: vfat: fix 'whic' spelling shaikh.kamal
2026-07-26  8:31 ` OGAWA Hirofumi
2026-07-26  9:35   ` shaikh kamaluddin
2026-07-26  9:41     ` OGAWA Hirofumi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox