summaryrefslogtreecommitdiffhomepage
path: root/bash.html.markdown
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@banno.com>2013-09-19 16:48:09 -0500
committerLevi Bostian <levi.bostian@banno.com>2013-09-19 16:48:09 -0500
commitde5a359faadffadbff1ccb19ad584ffb1c906796 (patch)
treea57e3328cebc84cd416d4d16e60bc3a60bf5e36f /bash.html.markdown
parentc4f541dc92ae149947a49a885292d8ad7ead7aa6 (diff)
Edit wording of while loop in bash.
Diffstat (limited to 'bash.html.markdown')
-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