summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--bash.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash.html.markdown b/bash.html.markdown
index 1473e669..2faa4988 100644
--- a/bash.html.markdown
+++ b/bash.html.markdown
@@ -53,10 +53,10 @@ else
echo "And this is not"
fi
-# And the usual while loop:
+# while loop:
while [true]
do
- echo "put loop content here..."
+ echo "loop body here..."
break
done