Remove extra parentheses

Fixes #3238
This commit is contained in:
Nilankan Betal 2022-08-09 13:16:05 +05:30 committed by GitHub
parent fef873d485
commit 34ce1724a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -871,7 +871,7 @@ static TMParserMapEntry map_RUST[] = {
static TMParserMapGroup group_RUST[] = {
{_("Modules"), TM_ICON_NAMESPACE, tm_tag_namespace_t},
{_("Structures"), TM_ICON_STRUCT, tm_tag_struct_t},
{_("Traits)"), TM_ICON_CLASS, tm_tag_interface_t},
{_("Traits"), TM_ICON_CLASS, tm_tag_interface_t},
{_("Implementations"), TM_ICON_CLASS, tm_tag_class_t},
{_("Functions"), TM_ICON_METHOD, tm_tag_function_t | tm_tag_method_t},
{_("Typedefs / Enums"), TM_ICON_STRUCT, tm_tag_typedef_t | tm_tag_enum_t},