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]
 ====
-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.
 ====