From cea8224acf3106ffcbcfb5f666e53556668b7421 Mon Sep 17 00:00:00 2001 From: Sahal Ansari Date: Fri, 18 Oct 2024 23:01:02 -0500 Subject: [PATCH] fix improper escape. --- docs/scripting/newbie_traps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/scripting/newbie_traps.md b/docs/scripting/newbie_traps.md index d56157f..ea80acc 100644 --- a/docs/scripting/newbie_traps.md +++ b/docs/scripting/newbie_traps.md @@ -116,7 +116,7 @@ for example When you need the **content** of a variable, you prefix its name with **a dollar-sign**, like -- echo \"The used picture is: \$picture\" + echo "The used picture is: $picture" #### Whitespace