Fixed spelling and verbage, line 16 (#29054)

This commit is contained in:
CL Mason
2019-01-15 15:58:26 -06:00
committed by Christopher McCormack
parent 9d0d023c4b
commit 3da1bd9f60

View File

@ -19,7 +19,7 @@ There are a few really helpful arguments to help with this:
- `/` is the root of your system to reach core folders, such as `system`, `users`, etc.
- `~` is the home directory, usually the path `/users/username`. Move back to folders referenced relative to this path by including it at the start of your path, for example `~/projects`.
- `-` can be used to move to the previous directory. For example, you are in `/A`, then cd to `/B`, use `cd -` and you are back to `/A`
- `~[number]` will cd to that entry from the output of `dirs` directories can be pushed on poped to the 'dirs' stack using `pushd` and `popd` respectively.
- `~[number]` will cd to that entry from the output of `dirs` directories can be pushed or popped to the 'dirs' stack using `pushd` and `popd` respectively.
- Typing only `cd` will move to the home directory works same as `cd ~`
- Typing 'pwd' will show you which directory you are currently working in.