瀏覽代碼

typo fix (#121)

Ertuğrul Çetin 4 年之前
父節點
當前提交
a27f7cc760
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/modules/tutorials/pages/concepts/best_practices.adoc

+ 1 - 1
docs/modules/tutorials/pages/concepts/best_practices.adoc

@@ -242,7 +242,7 @@ As your SimpleApplication-based game grows more advanced, you find yourself putt
 
 
 [NOTE]
 [NOTE]
 ====
 ====
-A game contains algorithms that do not directly affect spatials (for example, AI pathfinding code that calculates and chooses paths, but does not actually move spatials). You do not need to put such non-spatial code in controls, you can run thse things in a new thread. Only the tranformation code that actually modifies the spatial must be called from a control, or must be enqueue()ed.
+A game contains algorithms that do not directly affect spatials (for example, AI pathfinding code that calculates and chooses paths, but does not actually move spatials). You do not need to put such non-spatial code in controls, you can run these things in a new thread. Only the tranformation code that actually modifies the spatial must be called from a control, or must be enqueue()ed.
 ====
 ====