From 83d8e936ad1aade55050f9ed5c7c198c15877a94 Mon Sep 17 00:00:00 2001 From: Douglas <32344964+NotTheDr01ds@users.noreply.github.com> Date: Sat, 23 Nov 2024 17:04:27 -0500 Subject: [PATCH] Fix small typos in std/dirs (#14422) # Description Typos in the command doc-help. --- crates/nu-std/std/dirs/mod.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-std/std/dirs/mod.nu b/crates/nu-std/std/dirs/mod.nu index a26128a5d7..ab3403f36c 100644 --- a/crates/nu-std/std/dirs/mod.nu +++ b/crates/nu-std/std/dirs/mod.nu @@ -43,7 +43,7 @@ export def --env add [ } # Make the next directory on the list the active directory. -# If the currenta ctive directory is the last in the list, +# If the current active directory is the last in the list, # then cycle to the top of the list. export def --env next [ N:int = 1 # number of positions to move. @@ -52,7 +52,7 @@ export def --env next [ } # Make the previous directory on the list the active directory. -# If the current active directory is the first in the list, +# If the current active directory is the first in the list, # then cycle to the end of the list. export def --env prev [ N:int = 1 # number of positions to move.