fix(rust): indentation in tuple type patterns

This commit is contained in:
ganhaque 2024-04-03 18:48:19 -05:00 committed by Christian Clason
parent bf80e253a8
commit 4d4b63692f

View file

@ -8,6 +8,7 @@
(struct_pattern)
(tuple_struct_pattern)
(tuple_expression)
(tuple_type)
(match_block)
(call_expression)
(assignment_expression)
@ -85,6 +86,9 @@
(tuple_struct_pattern
")" @indent.end)
(tuple_type
")" @indent.end)
(trait_item
body: (declaration_list
"}" @indent.end))