浏览代码

Merge pull request #2220 from nbanks/patch-1

Fixed a typo in custom_modules_in_cpp.rst
Rémi Verschelde 6 年之前
父节点
当前提交
32156b39dc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      development/cpp/custom_modules_in_cpp.rst

+ 1 - 1
development/cpp/custom_modules_in_cpp.rst

@@ -249,7 +249,7 @@ of our new module as part of the Godot binary.
 This static approach is fine when we want to build a release version of our
 This static approach is fine when we want to build a release version of our
 game given we want all the modules in a single binary.
 game given we want all the modules in a single binary.
 
 
-However the trade-of is every single change means a full recompilation of the
+However the trade-off is every single change means a full recompilation of the
 game. Even if SCons is able to detect and recompile only the file that have
 game. Even if SCons is able to detect and recompile only the file that have
 changed, finding such files and eventually linking the final binary is a
 changed, finding such files and eventually linking the final binary is a
 long and costly part.
 long and costly part.