aboutsummaryrefslogtreecommitdiff
path: root/crates/ide/src/syntax_highlighting/tags.rs
diff options
context:
space:
mode:
authorLaurenČ›iu Nicola <[email protected]>2021-01-10 15:56:53 +0000
committerLaurenČ›iu Nicola <[email protected]>2021-01-10 15:56:53 +0000
commit10e7fd25feb96f7fe5b82864374833ebf273fa2f (patch)
treef8ccb57d183ed7f3d7b99282358f323c6d97edec /crates/ide/src/syntax_highlighting/tags.rs
parent035fed5f9f7c062da7d23190dab1a7021fd48a5d (diff)
Fix typo, parentheses is plural
Diffstat (limited to 'crates/ide/src/syntax_highlighting/tags.rs')
-rw-r--r--crates/ide/src/syntax_highlighting/tags.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/syntax_highlighting/tags.rs b/crates/ide/src/syntax_highlighting/tags.rs
index a4396e790..8dd05ac52 100644
--- a/crates/ide/src/syntax_highlighting/tags.rs
+++ b/crates/ide/src/syntax_highlighting/tags.rs
@@ -120,7 +120,7 @@ impl HlTag {
120 HlTag::Punctuation(punct) => match punct { 120 HlTag::Punctuation(punct) => match punct {
121 HlPunct::Bracket => "bracket", 121 HlPunct::Bracket => "bracket",
122 HlPunct::Brace => "brace", 122 HlPunct::Brace => "brace",
123 HlPunct::Parenthesis => "parentheses", 123 HlPunct::Parenthesis => "parenthesis",
124 HlPunct::Angle => "angle", 124 HlPunct::Angle => "angle",
125 HlPunct::Comma => "comma", 125 HlPunct::Comma => "comma",
126 HlPunct::Dot => "dot", 126 HlPunct::Dot => "dot",