aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/while.txt
diff options
context:
space:
mode:
authorGravatar Dennis Ideler <ideler.dennis@gmail.com>2016-05-25 00:22:44 +0100
committerGravatar Kurtis Rader <krader@skepticism.us>2016-05-24 17:16:30 -0700
commit0a40dcdb44050ff06a89fb2a837db1b01c4dba8c (patch)
tree7fe61f0cbe4d576dafb42870bf609cf3e8e3d89d /doc_src/while.txt
parent6b92fdd18d39471ef04b23a44877f88ac15a01dd (diff)
Fix documentation links to `or` and `and` command
Diffstat (limited to 'doc_src/while.txt')
-rw-r--r--doc_src/while.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc_src/while.txt b/doc_src/while.txt
index 855edce1..d8bd012e 100644
--- a/doc_src/while.txt
+++ b/doc_src/while.txt
@@ -11,7 +11,7 @@ while CONDITION; COMMANDS...; end
If the exit status of `CONDITION` is non-zero on the first iteration, `COMMANDS` will not be executed at all.
-You can use <a href="#and">`and`</a> or <a href="#and">`or`</a> for complex conditions. Even more complex control can be achieved with `while true` containing a <a href="#break">break</a>.
+You can use <a href="#and">`and`</a> or <a href="#or">`or`</a> for complex conditions. Even more complex control can be achieved with `while true` containing a <a href="#break">break</a>.
\subsection while-example Example