Skip to content

Commit 85d9eb7

Browse files
authored
Remove spurious whitespace in workspace/executeCommand handler (#28)
1 parent a5fdb53 commit 85d9eb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LanguageServerProtocol.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ module Server =
358358
"workspace/willDeleteFiles", requestHandling (fun s p -> s.WorkspaceWillDeleteFiles(p))
359359
"workspace/didDeleteFiles", requestHandling (fun s p -> s.WorkspaceDidDeleteFiles(p) |> notificationSuccess)
360360
"workspace/symbol", requestHandling (fun s p -> s.WorkspaceSymbol(p))
361-
"workspace/executeCommand ", requestHandling (fun s p -> s.WorkspaceExecuteCommand(p))
361+
"workspace/executeCommand", requestHandling (fun s p -> s.WorkspaceExecuteCommand(p))
362362
"shutdown", requestHandling (fun s () -> s.Shutdown() |> notificationSuccess)
363363
"exit", requestHandling (fun s () -> s.Exit() |> notificationSuccess) ]
364364
|> Map.ofList

0 commit comments

Comments
 (0)