소스 검색

GDScript basics: expand upon continue explanation (#6650)


Co-authored-by: DavidVereb <[email protected]>
Max Hilbrunner 2 년 전
부모
커밋
7b21d5c293
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      tutorials/scripting/gdscript/gdscript_basics.rst

+ 2 - 1
tutorials/scripting/gdscript/gdscript_basics.rst

@@ -1082,7 +1082,8 @@ while
 ^^^^^
 
 Simple loops are created by using ``while`` syntax. Loops can be broken
-using ``break`` or continued using ``continue``:
+using ``break`` or continued using ``continue`` (which skips to the next
+iteration of the loop without executing any further code in the current iteration):
 
 ::