diff --git a/Accelerate_with_automation/lessons/loops_and_scripts.md b/Accelerate_with_automation/lessons/loops_and_scripts.md index 931b6f7d..7cdde148 100644 --- a/Accelerate_with_automation/lessons/loops_and_scripts.md +++ b/Accelerate_with_automation/lessons/loops_and_scripts.md @@ -38,7 +38,7 @@ The syntax for varable assignment changes depending on whether you want to assig `variable=‘a string’` or `”a string”` for a string with spaces. - example: variable="My Variable" as seen above. + example: variable="My Variable" will assign the whole string within quotes, including spaces, to $variable `variable=$(command)` or ``variable=`command` `` for output of a command.