Browse Source

GDScript basics: improve match explanation

Co-authored-by: Jacob Gray <[email protected]>
Max Hilbrunner 5 years ago
parent
commit
b24b9ad9a5
1 changed files with 2 additions and 2 deletions
  1. 2 2
      getting_started/scripting/gdscript/gdscript_basics.rst

+ 2 - 2
getting_started/scripting/gdscript/gdscript_basics.rst

@@ -862,8 +862,8 @@ Basic syntax::
 **Control flow**:
 **Control flow**:
 
 
 The patterns are matched from top to bottom.
 The patterns are matched from top to bottom.
-If a pattern matches, the corresponding block will be executed. After that, the execution continues below the ``match`` statement.
-If you want to have a fallthrough, you can use ``continue`` to stop execution in the current block and check the ones below it.
+If a pattern matches, the first corresponding block will be executed. After that, the execution continues below the ``match`` statement.
+If you want to have a fallthrough, you can use ``continue`` to stop execution in the current block and check for an additional match in the patterns below it.
 
 
 There are 6 pattern types:
 There are 6 pattern types: