From ee85dda015d62e990c26606e8ad8909f2383a337 Mon Sep 17 00:00:00 2001 From: WakaJoekoe <48286673+WakaJoekoe@users.noreply.github.com> Date: Mon, 11 Mar 2019 16:26:45 +0100 Subject: [PATCH] changed "don't" to "doesn't" changed two words to make the sentence grammatically correct --- getting_started/scripting/gdscript/gdscript_basics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting_started/scripting/gdscript/gdscript_basics.rst b/getting_started/scripting/gdscript/gdscript_basics.rst index 5fee9260d..11fb3ca75 100644 --- a/getting_started/scripting/gdscript/gdscript_basics.rst +++ b/getting_started/scripting/gdscript/gdscript_basics.rst @@ -809,7 +809,7 @@ There are 6 pattern types: - array pattern matches an array. Every single element of the array pattern is a pattern itself so you can nest them. - The length of the array is tested first, it has to be the same size as the pattern, otherwise the pattern don't match. + The length of the array is tested first, it has to be the same size as the pattern, otherwise the pattern doesn't match. **Open-ended array**: An array can be bigger than the pattern by making the last subpattern ``..`` @@ -828,7 +828,7 @@ There are 6 pattern types: - dictionary pattern Works in the same way as the array pattern. Every key has to be a constant pattern. - The size of the dictionary is tested first, it has to be the same size as the pattern, otherwise the pattern don't match. + The size of the dictionary is tested first, it has to be the same size as the pattern, otherwise the pattern doesn't match. **Open-ended dictionary**: A dictionary can be bigger than the pattern by making the last subpattern ``..``