Branch: refs/heads/master Author: Nilankan Betal 92252352+NilankanBetal@users.noreply.github.com Committer: GitHub noreply@github.com Date: Tue, 09 Aug 2022 07:46:05 UTC Commit: 34ce1724a510e86f197ec14d60e89f6bc10eb440 https://github.com/geany/geany/commit/34ce1724a510e86f197ec14d60e89f6bc10eb4...
Log Message: ----------- Remove extra parentheses
Fixes #3238
Modified Paths: -------------- src/tagmanager/tm_parser.c
Modified: src/tagmanager/tm_parser.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -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},
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).