Skip to content

Commit c197744

Browse files
committed
Fixed typo in SemanticTokenFullOptions struct name
1 parent bee2b51 commit c197744

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lsp_capabilities_server.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -786,10 +786,10 @@ type SemanticTokensOptions struct {
786786

787787
// Server supports providing semantic tokens for a full document.
788788
// type: boolean | { delta?: boolean }
789-
Full *SemantiTokenFullOptions `json:"full,omitempty"`
789+
Full *SemanticTokenFullOptions `json:"full,omitempty"`
790790
}
791791

792-
type SemantiTokenFullOptions struct {
792+
type SemanticTokenFullOptions struct {
793793
// The server supports deltas for full documents.
794794
Delta bool `json:"delta,omitempty"`
795795
}

0 commit comments

Comments
 (0)