about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
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.
 
 ~~~~