mirror of
https://github.com/nushell/nushell
synced 2024-12-26 04:53:09 +00:00
Fix small typos in std/dirs (#14422)
# Description Typos in the command doc-help.
This commit is contained in:
parent
58576630db
commit
83d8e936ad
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ export def --env add [
|
||||||
}
|
}
|
||||||
|
|
||||||
# Make the next directory on the list the active directory.
|
# 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.
|
# then cycle to the top of the list.
|
||||||
export def --env next [
|
export def --env next [
|
||||||
N:int = 1 # number of positions to move.
|
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.
|
# 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.
|
# then cycle to the end of the list.
|
||||||
export def --env prev [
|
export def --env prev [
|
||||||
N:int = 1 # number of positions to move.
|
N:int = 1 # number of positions to move.
|
||||||
|
|
Loading…
Reference in a new issue