aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2025-01-03 12:19:38 -0300
committerHisham Muhammad <hisham@gobolinux.org>2025-01-03 13:17:28 -0300
commit3645ed60480e2b8392ce4f21f3ce77611dabd5cf (patch)
treec22a6fe2700b3aa726fecfe0f830632d88328774
parent2d4a87e4765756a0e6df024ccd52972590f2923d (diff)
downloadluarocks-3645ed60480e2b8392ce4f21f3ce77611dabd5cf.tar.gz
luarocks-3645ed60480e2b8392ce4f21f3ce77611dabd5cf.tar.bz2
luarocks-3645ed60480e2b8392ce4f21f3ce77611dabd5cf.zip
rockspec: make order type more lenient
See https://github.com/teal-language/tl/pull/890#issuecomment-2569388264
-rw-r--r--src/luarocks/type/rockspec.tl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/type/rockspec.tl b/src/luarocks/type/rockspec.tl
index 5db0c4c4..599c13ce 100644
--- a/src/luarocks/type/rockspec.tl
+++ b/src/luarocks/type/rockspec.tl
@@ -1,5 +1,5 @@
1local record type_rockspec 1local record type_rockspec
2 order: Ordering<string> 2 order: Ordering<number | string>
3 rockspec_format: string 3 rockspec_format: string
4end 4end
5 5