abakobo 8 年之前
父節點
當前提交
78e4d75e57
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      modules/monkey/docs/language/loop-statements.md
  2. 1 1
      modules/monkey/docs/language/misc.md

+ 1 - 1
modules/monkey/docs/language/loop-statements.md

@@ -39,7 +39,7 @@ The syntax for `Repeat`/`Until` loops is:
 
 `Forever`
 
-`Exit` and `Continue` may be used within a While loop to abruptly terminate or continue loop execution.
+`Exit` and `Continue` may be used within a Repeat loop to abruptly terminate or continue loop execution.
 
 #### For (Numeric)
 

+ 1 - 1
modules/monkey/docs/language/misc.md

@@ -15,5 +15,5 @@ Local i:=$A0F
 
 Inline comments can be done with the `'` character.
 ```
-Print "hello!" 'this line prints hello on the output console
+Print "hello!" 'this line prints hello! on the output console
 ```