fixup! docs(luacats): add tuple support

This commit is contained in:
Ilia Choly 2024-05-30 13:25:06 -04:00 committed by Lewis Russell
parent d87ecfc8bc
commit 217828b20c

View File

@ -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]]