Skip to content

Commit 62cdd0e

Browse files
Fix code span syntax in 004-bash-variables.md (#6)
1 parent 1786aae commit 62cdd0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/004-bash-variables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Here is a rundown of the script:
5858

5959
* `#!/bin/bash` - first, we specified our shebang
6060
* `name=DevDojo` - then we defined a variable called `name` and assigned a value to it
61-
* `echo "Hi there $name" - finally we output the content of the variable on the screen by using `echo`
61+
* `echo "Hi there $name"` - finally we output the content of the variable on the screen by using `echo`
6262

6363
You can also add multiple variables:
6464

0 commit comments

Comments
 (0)