diff options
author | Matthew Toohey | 2024-01-22 14:06:20 +0000 |
---|---|---|
committer | GitHub | 2024-01-22 14:06:20 +0000 |
commit | f5f08becef0c27f183a7772f6ec6f5442eca2bab (patch) | |
tree | 05b1da4937835250239c21606791e8fe592e3092 /helix-core | |
parent | 9c56afeff36489ff73a9b160fe7d57360a3f9952 (diff) |
Fix typo in string representation of GotoReference (#9395)
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/syntax.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/syntax.rs b/helix-core/src/syntax.rs index 83bd09b4..e543df06 100644 --- a/helix-core/src/syntax.rs +++ b/helix-core/src/syntax.rs @@ -263,7 +263,7 @@ impl Display for LanguageServerFeature { GotoDeclaration => "goto-declaration", GotoDefinition => "goto-definition", GotoTypeDefinition => "goto-type-definition", - GotoReference => "goto-type-definition", + GotoReference => "goto-reference", GotoImplementation => "goto-implementation", SignatureHelp => "signature-help", Hover => "hover", |