Просмотр исходного кода

Merge pull request #1263 from xpvpc/master

fix typo
Max Hilbrunner 7 лет назад
Родитель
Сommit
c57d25d573
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      getting_started/scripting/gdscript/gdscript_basics.rst

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

@@ -1018,7 +1018,7 @@ special export syntax is provided.
     export(int, -10, 20) var j
     # Allow floats from -10 to 20, with a step of 0.2
     export(float, -10, 20, 0.2) var k
-    # Allow values y = exp(x) where y varies betwee 100 and 1000
+    # Allow values y = exp(x) where y varies between 100 and 1000
     # while snapping to steps of 20. The editor will present a
     # slider for easily editing the value.
     export(float, EXP, 100, 1000, 20) var l