瀏覽代碼

Merge pull request #193 from Kadoba/patch-1

Removed comment about Lua arrays as dictionaries
Rémi Verschelde 9 年之前
父節點
當前提交
c544083a25
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      reference/gdscript_more_efficiently.rst

+ 2 - 2
reference/gdscript_more_efficiently.rst

@@ -238,8 +238,8 @@ only on limited form).
 Dictionaries can map any value to any other value with complete
 disregard for the datatype used as either key or value. Contrary to
 popular belief, they are very efficient because they can be implemented
-with hash tables. They are, in fact, so efficient that languages such as
-Lua will go as far as implementing arrays as dictionaries.
+with hash tables. They are, in fact, so efficient that some languages
+will go as far as implementing arrays as dictionaries.
 
 Example of Dictionary: