Fix typo in string representation of GotoReference (#9395)

This commit is contained in:
Matthew Toohey 2024-01-22 09:06:20 -05:00 committed by GitHub
parent 9c56afeff3
commit f5f08becef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -263,7 +263,7 @@ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
GotoDeclaration => "goto-declaration", GotoDeclaration => "goto-declaration",
GotoDefinition => "goto-definition", GotoDefinition => "goto-definition",
GotoTypeDefinition => "goto-type-definition", GotoTypeDefinition => "goto-type-definition",
GotoReference => "goto-type-definition", GotoReference => "goto-reference",
GotoImplementation => "goto-implementation", GotoImplementation => "goto-implementation",
SignatureHelp => "signature-help", SignatureHelp => "signature-help",
Hover => "hover", Hover => "hover",