diff options
author | Levi Bostian <levi.bostian@banno.com> | 2013-09-19 16:48:09 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@banno.com> | 2013-09-19 16:48:09 -0500 |
commit | de5a359faadffadbff1ccb19ad584ffb1c906796 (patch) | |
tree | a57e3328cebc84cd416d4d16e60bc3a60bf5e36f | |
parent | c4f541dc92ae149947a49a885292d8ad7ead7aa6 (diff) |
Edit wording of while loop in bash.
-rw-r--r-- | bash.html.markdown | 4 |
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 |