diff mbox series

[f2fs-dev] f2fs: fix typos

Message ID 20241027140623.24802-1-algonell@gmail.com (mailing list archive)
State New
Headers show
Series [f2fs-dev] f2fs: fix typos | expand

Commit Message

Andrew Kreimer Oct. 27, 2024, 2:06 p.m. UTC
Fix typos: datas -> data.

Via codespell.

Signed-off-by: Andrew Kreimer <algonell@gmail.com>
---
 fs/f2fs/debug.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Chao Yu Oct. 29, 2024, 1:06 a.m. UTC | #1
On 2024/10/27 22:06, Andrew Kreimer wrote:
> Fix typos: datas -> data.
> 
> Via codespell.
> 
> Signed-off-by: Andrew Kreimer <algonell@gmail.com>

Reviewed-by: Chao Yu <chao@kernel.org>

Thanks,
diff mbox series

Patch

diff --git a/fs/f2fs/debug.c b/fs/f2fs/debug.c
index 546b8ba91261..9dfb577d695b 100644
--- a/fs/f2fs/debug.c
+++ b/fs/f2fs/debug.c
@@ -598,9 +598,9 @@  static int stat_show(struct seq_file *s, void *v)
 			   si->ndirty_node, si->node_pages);
 		seq_printf(s, "  - dents: %4d in dirs:%4d (%4d)\n",
 			   si->ndirty_dent, si->ndirty_dirs, si->ndirty_all);
-		seq_printf(s, "  - datas: %4d in files:%4d\n",
+		seq_printf(s, "  - data: %4d in files:%4d\n",
 			   si->ndirty_data, si->ndirty_files);
-		seq_printf(s, "  - quota datas: %4d in quota files:%4d\n",
+		seq_printf(s, "  - quota data: %4d in quota files:%4d\n",
 			   si->ndirty_qdata, si->nquota_files);
 		seq_printf(s, "  - meta: %4d in %4d\n",
 			   si->ndirty_meta, si->meta_pages);