summaryrefslogtreecommitdiff
path: root/examples/resources
diff options
context:
space:
mode:
authorjussi2022-06-26 15:03:08 +0300
committerjussi2022-06-26 15:03:08 +0300
commit314d0412a53b8e012ec183c503a69cc32e24ab34 (patch)
tree1655be4b4a86f1712641301d673e22750ec7e8a6 /examples/resources
parent36baf4c1222aee409bb62be9770798bfa7fdd302 (diff)
downloadreilua-enhanced-314d0412a53b8e012ec183c503a69cc32e24ab34.tar.gz
reilua-enhanced-314d0412a53b8e012ec183c503a69cc32e24ab34.tar.bz2
reilua-enhanced-314d0412a53b8e012ec183c503a69cc32e24ab34.zip
Get font info.
Diffstat (limited to 'examples/resources')
-rw-r--r--examples/resources/lib/utillib.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/resources/lib/utillib.lua b/examples/resources/lib/utillib.lua
index 66916fe..8d3ce9e 100644
--- a/examples/resources/lib/utillib.lua
+++ b/examples/resources/lib/utillib.lua
@@ -13,7 +13,7 @@ function utillib.deepCopy( orig )
copy = {}
for origKey, origValue in next, orig, nil do
- -- If object has clone method use that. Mainly for vector libraries.
+ -- If object has clone method, use that.
if type( origValue ) == "table" and type( origValue.clone ) == "function" then
copy[ utillib.deepCopy( origKey ) ] = orig_value:clone()
else