Skip to content

Commit 017a050

Browse files
tomhydraAdnan Ahmed
authored andcommitted
Fixes #50 (#57)
1 parent 9fa6963 commit 017a050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1028,7 +1028,7 @@ When you run the above example the `hello` function will output "world!". The ab
10281028
The conditional statement in bash is similar to other programming languages. Conditions have many form like the most basic form is `if` expression `then` statement where statement is only executed if expression is true.
10291029

10301030
```bash
1031-
if [expression]; then
1031+
if [ expression ]; then
10321032
will execute only if expression is true
10331033
else
10341034
will execute if expression is false

0 commit comments

Comments
 (0)