From 736b62d06b628a292462c392731c89a5a1cf92ee Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Fri, 27 Nov 2020 19:06:51 +0800 Subject: [PATCH] Fix code span syntax in 004-bash-variables.md --- content/004-bash-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/004-bash-variables.md b/content/004-bash-variables.md index 61c3fae..d21be46 100644 --- a/content/004-bash-variables.md +++ b/content/004-bash-variables.md @@ -58,7 +58,7 @@ Here is a rundown of the script: * `#!/bin/bash` - first, we specified our shebang * `name=DevDojo` - then we defined a variable called `name` and assigned a value to it -* `echo "Hi there $name" - finally we output the content of the variable on the screen by using `echo` +* `echo "Hi there $name"` - finally we output the content of the variable on the screen by using `echo` You can also add multiple variables: