diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-15 10:27:42 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-15 10:27:42 -0400 |
commit | 49b44f6346df4e25a6e001e7d71534efc197a445 (patch) | |
tree | fa2606c0cc9fc71fca2db73ba3d4d4c912531c8a | |
parent | 735b519d0c5cf704a992972829ab7a36afa95685 (diff) |
kernel: vfs: Fix typo in comment
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | sys/kern/vfs_lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_lookup.c b/sys/kern/vfs_lookup.c index 748d5e2..7d20bd2 100644 --- a/sys/kern/vfs_lookup.c +++ b/sys/kern/vfs_lookup.c @@ -33,7 +33,7 @@ #include <string.h> /* - * Fetches the filename within a past at + * Fetches the filename within a path at * the nth index denoted by `idx' * * Returns memory allocated by dynalloc() |