Skip to content

Commit c9ca313

Browse files
authored
Fixed a typo
Closes #7
1 parent 62cdd0e commit c9ca313

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/011-bash-loops.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Now, if you run the above and just press enter without providing input, the loop
9393

9494
## Until Loops
9595

96-
The difference between `until` and `while` loops is that the `until` lool will run the commands within the loop until the condition becomes true.
96+
The difference between `until` and `while` loops is that the `until` loop will run the commands within the loop until the condition becomes true.
9797

9898
Structure:
9999

@@ -121,4 +121,4 @@ done
121121
As with other languages, you can use `continue` and `break` with your bash scripts as well:
122122

123123
* `continue` tells your bash script to stop the current iteration of the loop and start the next iteration.
124-
* `break` tells your bash script to end the loop straight away.
124+
* `break` tells your bash script to end the loop straight away.

0 commit comments

Comments
 (0)