summaryrefslogtreecommitdiff
path: root/lualibs-table.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg42.2a@gmail.com>2013-05-21 20:57:12 +0200
committerPhilipp Gesang <phg42.2a@gmail.com>2013-05-21 20:57:12 +0200
commitb95a6d8e0607155b2419e3731b8e4a050183a42c (patch)
treed3ffdc7f7e2610282e49f332c9b449096bff128a /lualibs-table.lua
parent260c0a1c6f7e41618d08519c2e5db70409742b37 (diff)
downloadlualibs-b95a6d8e0607155b2419e3731b8e4a050183a42c.tar.gz
sync with Context as of 2013-05-21
Diffstat (limited to 'lualibs-table.lua')
-rw-r--r--lualibs-table.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lualibs-table.lua b/lualibs-table.lua
index e57abe8..9a1b97f 100644
--- a/lualibs-table.lua
+++ b/lualibs-table.lua
@@ -120,7 +120,7 @@ local function sortedhash(t,cmp)
if t then
local s
if cmp then
- -- it would be nice if teh sort function would accept a third argument (or nicer, an optional first)
+ -- it would be nice if the sort function would accept a third argument (or nicer, an optional first)
s = sortedhashkeys(t,function(a,b) return cmp(t,a,b) end)
else
s = sortedkeys(t) -- the robust one