summaryrefslogtreecommitdiff
path: root/sys/fs
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2022-10-07 22:33:42 +0000
committerandvar <andvar@NetBSD.org>2022-10-07 22:33:42 +0000
commite73ac928f7d91bc1307d4410c3f6daf6dbb4cc52 (patch)
treecc713cbee132765154da5485e7e7e33f2865a12d /sys/fs
parent9721e07c5bd58ad04873d1ec33200e9d13cd3318 (diff)
fix few typos in comments.
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/nilfs/nilfs_vnops.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/nilfs/nilfs_vnops.c b/sys/fs/nilfs/nilfs_vnops.c
index 75ad1d6d556..860c029a861 100644
--- a/sys/fs/nilfs/nilfs_vnops.c
+++ b/sys/fs/nilfs/nilfs_vnops.c
@@ -1,4 +1,4 @@
-/* $NetBSD: nilfs_vnops.c,v 1.47 2022/05/28 21:14:56 andvar Exp $ */
+/* $NetBSD: nilfs_vnops.c,v 1.48 2022/10/07 22:33:42 andvar Exp $ */
/*
* Copyright (c) 2008, 2009 Reinoud Zandijk
@@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: nilfs_vnops.c,v 1.47 2022/05/28 21:14:56 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nilfs_vnops.c,v 1.48 2022/10/07 22:33:42 andvar Exp $");
#endif /* not lint */
@@ -1272,7 +1272,7 @@ nilfs_readlink(void *v)
/* --------------------------------------------------------------------- */
-/* note: i tried to follow the logics of the tmpfs rename code */
+/* note: i tried to follow the logic of the tmpfs rename code */
int
nilfs_rename(void *v)
{
@@ -1346,7 +1346,7 @@ nilfs_rename(void *v)
}
}
- /* dont allow renaming directories acros directory for now */
+ /* don't allow renaming directories across directory for now */
if (fdnode != tdnode) {
if (fvp->v_type == VDIR) {
error = EINVAL;