summaryrefslogtreecommitdiff
path: root/tex/context/base/l-table.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2013-05-18 00:46:00 +0200
committerHans Hagen <pragma@wxs.nl>2013-05-18 00:46:00 +0200
commitee89a80d8d8082d1e73db02183c539a385884f6f (patch)
tree35ed0af659c2ccdff31f40b30b5f0b6bda641b7b /tex/context/base/l-table.lua
parentfdf6650bc19c97b288d2a85e3419064608544594 (diff)
downloadcontext-ee89a80d8d8082d1e73db02183c539a385884f6f.tar.gz
beta 2013.05.18 00:46
Diffstat (limited to 'tex/context/base/l-table.lua')
-rw-r--r--tex/context/base/l-table.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tex/context/base/l-table.lua b/tex/context/base/l-table.lua
index e57abe854..9a1b97fff 100644
--- a/tex/context/base/l-table.lua
+++ b/tex/context/base/l-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