瀏覽代碼

Merge pull request #3549 from FeatherAntennae/patch-1

Fixed typo in "logic preferences" best practices file
Max Hilbrunner 5 年之前
父節點
當前提交
c172e10c8a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      getting_started/workflow/best_practices/logic_preferences.rst

+ 1 - 1
getting_started/workflow/best_practices/logic_preferences.rst

@@ -16,7 +16,7 @@ resources while in the middle of performance-sensitive code.
 
 
 Its counterpart, the :ref:`load <class_@GDScript_method_load>` method, loads a
 Its counterpart, the :ref:`load <class_@GDScript_method_load>` method, loads a
 resource only when it reaches the load statement. That is, it will load a
 resource only when it reaches the load statement. That is, it will load a
-resource in-place which can cause slowdowns then it occurs in the middle of
+resource in-place which can cause slowdowns when it occurs in the middle of
 sensitive processes. The ``load`` function is also an alias for
 sensitive processes. The ``load`` function is also an alias for
 :ref:`ResourceLoader.load(path) <class_ResourceLoader_method_load>` which is
 :ref:`ResourceLoader.load(path) <class_ResourceLoader_method_load>` which is
 accessible to *all* scripting languages.
 accessible to *all* scripting languages.