浏览代码

Fix a typo in Physics introduction (#5778)

snailrhymer 3 年之前
父节点
当前提交
becf8f1663
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tutorials/physics/physics_introduction.rst

+ 1 - 1
tutorials/physics/physics_introduction.rst

@@ -172,7 +172,7 @@ would be as follows::
     0x000d
     0x000d
     # (This value can be shortened to 0xd)
     # (This value can be shortened to 0xd)
 
 
-    # Decimal - Add the results of 2 to the power of (layer be enabled-1).
+    # Decimal - Add the results of 2 to the power of (layer to be enabled - 1).
     # (2^(1-1)) + (2^(3-1)) + (2^(4-1)) = 1 + 4 + 8 = 13
     # (2^(1-1)) + (2^(3-1)) + (2^(4-1)) = 1 + 4 + 8 = 13
     pow(2, 1) + pow(2, 3) + pow(2, 4)
     pow(2, 1) + pow(2, 3) + pow(2, 4)