mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH][next] fs/ntfs3: Fix spelling mistake "recommened" -> "recommended"
@ 2025-02-28  8:57 Colin Ian King
  2025-11-20  9:20 ` Konstantin Komarov
  0 siblings, 1 reply; 4+ messages in thread
From: Colin Ian King @ 2025-02-28  8:57 UTC (permalink / raw)
  To: Konstantin Komarov, ntfs3; +Cc: kernel-janitors, linux-kernel

There is a spelling mistake in an ntfs_info message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 fs/ntfs3/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c
index 920a1ab47b63..d0d3214d3688 100644
--- a/fs/ntfs3/super.c
+++ b/fs/ntfs3/super.c
@@ -1293,7 +1293,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
 	sbi->volume.ni = ni;
 	if (info->flags & VOLUME_FLAG_DIRTY) {
 		sbi->volume.real_dirty = true;
-		ntfs_info(sb, "It is recommened to use chkdsk.");
+		ntfs_info(sb, "It is recommended to use chkdsk.");
 	}
 
 	/* Load $MFTMirr to estimate recs_mirr. */
-- 
2.47.2


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

* Re: [PATCH][next] fs/ntfs3: Fix spelling mistake "recommened" -> "recommended"
  2025-02-28  8:57 [PATCH][next] fs/ntfs3: Fix spelling mistake "recommened" -> "recommended" Colin Ian King
@ 2025-11-20  9:20 ` Konstantin Komarov
  0 siblings, 0 replies; 4+ messages in thread
From: Konstantin Komarov @ 2025-11-20  9:20 UTC (permalink / raw)
  To: Colin Ian King, ntfs3; +Cc: kernel-janitors, linux-kernel

On 2/28/25 09:57, Colin Ian King wrote:

> There is a spelling mistake in an ntfs_info message. Fix it.
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>   fs/ntfs3/super.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c
> index 920a1ab47b63..d0d3214d3688 100644
> --- a/fs/ntfs3/super.c
> +++ b/fs/ntfs3/super.c
> @@ -1293,7 +1293,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
>   	sbi->volume.ni = ni;
>   	if (info->flags & VOLUME_FLAG_DIRTY) {
>   		sbi->volume.real_dirty = true;
> -		ntfs_info(sb, "It is recommened to use chkdsk.");
> +		ntfs_info(sb, "It is recommended to use chkdsk.");
>   	}
>   
>   	/* Load $MFTMirr to estimate recs_mirr. */

Hello,

Sorry for the delay. Your patch has been applied, thanks for your patience.

Regards,
Konstantin


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

* [PATCH][next] fs/ntfs3: Fix spelling mistake "recommened" -> "recommended"
@ 2024-08-28  9:28 Colin Ian King
  0 siblings, 0 replies; 4+ messages in thread
From: Colin Ian King @ 2024-08-28  9:28 UTC (permalink / raw)
  To: Konstantin Komarov, ntfs3; +Cc: kernel-janitors, linux-kernel

There is a spelling mistake in a ntfs_info message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 fs/ntfs3/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c
index 128d49512f5d..7c4eb9b61d4e 100644
--- a/fs/ntfs3/super.c
+++ b/fs/ntfs3/super.c
@@ -1247,7 +1247,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
 	sbi->volume.ni = ni;
 	if (info->flags & VOLUME_FLAG_DIRTY) {
 		sbi->volume.real_dirty = true;
-		ntfs_info(sb, "It is recommened to use chkdsk.");
+		ntfs_info(sb, "It is recommended to use chkdsk.");
 	}
 
 	/* Load $MFTMirr to estimate recs_mirr. */
-- 
2.39.2


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

* [PATCH][next] fs/ntfs3: Fix spelling mistake "recommened" -> "recommended"
@ 2023-05-09  7:28 Colin Ian King
  0 siblings, 0 replies; 4+ messages in thread
From: Colin Ian King @ 2023-05-09  7:28 UTC (permalink / raw)
  To: Konstantin Komarov, ntfs3; +Cc: kernel-janitors, linux-kernel

There is a spelling mistake in a ntfs_info message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 fs/ntfs3/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ntfs3/super.c b/fs/ntfs3/super.c
index e36769eac7de..8323911fe274 100644
--- a/fs/ntfs3/super.c
+++ b/fs/ntfs3/super.c
@@ -1191,7 +1191,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
 	sbi->volume.ni = ni;
 	if (info->flags & VOLUME_FLAG_DIRTY) {
 		sbi->volume.real_dirty = true;
-		ntfs_info(sb, "It is recommened to use chkdsk.");
+		ntfs_info(sb, "It is recommended to use chkdsk.");
 	}
 
 	/* Load $MFTMirr to estimate recs_mirr. */
-- 
2.30.2


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

end of thread, other threads:[~2025-11-20  9:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-02-28  8:57 [PATCH][next] fs/ntfs3: Fix spelling mistake "recommened" -> "recommended" Colin Ian King
2025-11-20  9:20 ` Konstantin Komarov
  -- strict thread matches above, loose matches on Subject: below --
2024-08-28  9:28 Colin Ian King
2023-05-09  7:28 Colin Ian King

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

all inboxes | Powered by JetHome®