From 217828b20c9fc224c6892ce1b0129850c280f598 Mon Sep 17 00:00:00 2001 From: Ilia Choly Date: Thu, 30 May 2024 13:25:06 -0400 Subject: fixup! docs(luacats): add tuple support --- scripts/luacats_grammar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/luacats_grammar.lua b/scripts/luacats_grammar.lua index 906f66c18a..6742eab5e9 100644 --- a/scripts/luacats_grammar.lua +++ b/scripts/luacats_grammar.lua @@ -180,7 +180,7 @@ local grammar = P { fun_param = lname * opt(colon * v.ltype), ty_fun = Pf('fun') * paren(comma(lname * opt(colon * v.ltype))) * opt(colon * comma1(v.ltype)), ty_generic = P('`') * letter * P('`'), - ty_tuple = Pf('[') * comma(v.ty_opt) * fill * P(']') + ty_tuple = Pf('[') * comma(v.ty_opt) * fill * P(']'), } return grammar --[[@as nvim.luacats.grammar]] -- cgit