From e7110389ec5d40eaa712a10b10bd95b33ee2755f Mon Sep 17 00:00:00 2001 From: Rodrigo Vieira da Silva Date: Sun, 3 Nov 2024 06:51:45 -0300 Subject: [PATCH] Fix prepend to append in coming_from_cmd.md --- book/coming_from_cmd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/coming_from_cmd.md b/book/coming_from_cmd.md index fce695a21ef..0fafadb3b20 100644 --- a/book/coming_from_cmd.md +++ b/book/coming_from_cmd.md @@ -37,7 +37,7 @@ This table was last updated for Nu 0.67.0. | `MKLINK` | | Create symbolic links | | `MOVE` | `mv` | Move files | | `PATH` | `$env.Path` | Display the current path variable | -| `PATH ;%PATH%` | `$env.Path = ($env.Path \| prepend `) | Edit the path variable | +| `PATH ;%PATH%` | `$env.Path = ($env.Path \| append `) | Edit the path variable | | `PATH %PATH%;` | `$env.Path = ($env.Path \| prepend `) | Edit the path variable | | `PAUSE` | `input "Press any key to continue . . ."` | Pause script execution | | `PROMPT