Bladeren bron

Merge pull request #3745 from jcoombes/patch-1

irregardless -> regardless.
Rémi Verschelde 5 jaren geleden
bovenliggende
commit
6a037a7dac
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      getting_started/scripting/gdscript/gdscript_basics.rst

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

@@ -1573,7 +1573,7 @@ multiple times, you can yield to the ``completed`` signal conditionally:
         return result
 
 This ensures that the function returns whatever it was supposed to return
-irregardless of whether coroutines were used internally. Note that using
+regardless of whether coroutines were used internally. Note that using
 ``while`` would be redundant here as the ``completed`` signal is only emitted
 when the function didn't yield anymore.