about summary refs log tree commit diff
path: root/src/tools/rust-analyzer
diff options
context:
space:
mode:
authorasuto15 <sluggard0115@gmail.com>2025-02-13 04:33:08 +0900
committerasuto15 <sluggard0115@gmail.com>2025-02-13 04:33:08 +0900
commit21b0c22054d0a3e58d496b6b5fb920ca9468efed (patch)
tree17a7600cb3722408fe7ef48e3013d138727dba3e /src/tools/rust-analyzer
parentd72b2df1526b9a2c168ffc851cc805db3f4fd8df (diff)
downloadrust-21b0c22054d0a3e58d496b6b5fb920ca9468efed.tar.gz
rust-21b0c22054d0a3e58d496b6b5fb920ca9468efed.zip
Delete useless comma
Diffstat (limited to 'src/tools/rust-analyzer')
-rw-r--r--src/tools/rust-analyzer/crates/ide/src/syntax_highlighting/highlight.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/ide/src/syntax_highlighting/highlight.rs b/src/tools/rust-analyzer/crates/ide/src/syntax_highlighting/highlight.rs
index d580b3001c3..8abaccd2536 100644
--- a/src/tools/rust-analyzer/crates/ide/src/syntax_highlighting/highlight.rs
+++ b/src/tools/rust-analyzer/crates/ide/src/syntax_highlighting/highlight.rs
@@ -720,7 +720,7 @@ fn highlight_name_ref_by_syntax(
             }
 
             h | HlMod::Library
-        },
+        }
         METHOD_CALL_EXPR => ast::MethodCallExpr::cast(parent)
             .and_then(|it| highlight_method_call(sema, krate, &it, edition))
             .unwrap_or_else(|| SymbolKind::Method.into()),