about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2013-12-06 12:11:11 -0500
committerCorey Richardson <corey@octayn.net>2013-12-10 09:43:36 -0500
commit381c08bf69374c41d696b4892f4c06139289caca (patch)
tree44f85bda4b3f34cdbfed098952f041e3f4c82be5 /doc/tutorial.md
parentf006a10b1eed27fc03b89ed2bb34202eb7e412e7 (diff)
downloadrust-381c08bf69374c41d696b4892f4c06139289caca.tar.gz
rust-381c08bf69374c41d696b4892f4c06139289caca.zip
loop -> continue
Diffstat (limited to 'doc/tutorial.md')
-rw-r--r--doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 6abbc15d96e..a430c6c72ec 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -546,7 +546,7 @@ literals and most `enum` variants.
 
 `while` denotes a loop that iterates as long as its given condition
 (which must have type `bool`) evaluates to `true`. Inside a loop, the
-keyword `break` aborts the loop, and `loop` aborts the current
+keyword `break` aborts the loop, and `continue` aborts the current
 iteration and continues with the next.
 
 ~~~~