From 08f0e7f67946f0f4c83f84c47e7c565e03edf24b Mon Sep 17 00:00:00 2001 From: devlinksnc <140226801+devlinksnc@users.noreply.github.com> Date: Sat, 22 Jul 2023 16:24:15 +0530 Subject: [PATCH 1/2] Fix typo in command_line_basics.md --- foundations/installations/command_line_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundations/installations/command_line_basics.md b/foundations/installations/command_line_basics.md index bf934bf746a..5f2a774313f 100644 --- a/foundations/installations/command_line_basics.md +++ b/foundations/installations/command_line_basics.md @@ -14,7 +14,7 @@ In this introductory lesson to the command line, you'll learn how to navigate ar - **macOS**: Open your Applications > Utilities folder and find "Terminal". You can also use Spotlight search to open Terminal. Press Cmd + Space to open Spotlight, and search for "Terminal". Press Enter to open it. -The window that opens will be blank with test that varies based on your operating system. On linux and older Macs the line will end with `$` and on newer Macs the line will end with `%`. This symbol called the prompt indicates that the terminal is waiting for you to enter a command. Lets try that now, type `whoami` and press Enter. +The window that opens will be blank with text that varies based on your operating system. On linux and older Macs the line will end with `$` and on newer Macs the line will end with `%`. This symbol called the prompt indicates that the terminal is waiting for you to enter a command. Lets try that now, type `whoami` and press Enter. It returns your username. Cool! From 0469642483610b127e7ce7009862e359df6497e3 Mon Sep 17 00:00:00 2001 From: devlinksnc <140226801+devlinksnc@users.noreply.github.com> Date: Sat, 22 Jul 2023 18:16:35 +0530 Subject: [PATCH 2/2] Command Line Basics lesson: Fix typo Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> --- foundations/installations/command_line_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundations/installations/command_line_basics.md b/foundations/installations/command_line_basics.md index 5f2a774313f..3b44573d4e8 100644 --- a/foundations/installations/command_line_basics.md +++ b/foundations/installations/command_line_basics.md @@ -14,7 +14,7 @@ In this introductory lesson to the command line, you'll learn how to navigate ar - **macOS**: Open your Applications > Utilities folder and find "Terminal". You can also use Spotlight search to open Terminal. Press Cmd + Space to open Spotlight, and search for "Terminal". Press Enter to open it. -The window that opens will be blank with text that varies based on your operating system. On linux and older Macs the line will end with `$` and on newer Macs the line will end with `%`. This symbol called the prompt indicates that the terminal is waiting for you to enter a command. Lets try that now, type `whoami` and press Enter. +The window that opens will be mostly blank, with the exception of some text that will vary based on your operating system. On Linux and older Macs the line will end with `$` and on newer Macs the line will end with `%`. This symbol - called the prompt - indicates that the terminal is waiting for you to enter a command. Lets try that now. Type `whoami` and press Enter. It returns your username. Cool!