From d345f29b0d7b54f2b7ec62b5363832790be35e40 Mon Sep 17 00:00:00 2001 From: Emil Hessman Date: Sat, 5 Jan 2019 20:20:03 +0100 Subject: [PATCH] internal/lsp: fix typo Change-Id: I04164ea5b57ebb828ecb837caa397c9e736f4d57 Reviewed-on: https://go-review.googlesource.com/c/156457 Reviewed-by: Brad Fitzpatrick --- internal/lsp/cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/lsp/cmd/cmd.go b/internal/lsp/cmd/cmd.go index a9595830..f5041d90 100644 --- a/internal/lsp/cmd/cmd.go +++ b/internal/lsp/cmd/cmd.go @@ -55,7 +55,7 @@ golsp flags are: // Run takes the args after top level flag processing, and invokes the correct // sub command as specified by the first argument. // If no arguments are passed it will invoke the server sub command, as a -// temporary measure for compatability. +// temporary measure for compatibility. func (app *Application) Run(ctx context.Context, args ...string) error { if len(args) == 0 { tool.Main(ctx, &app.Server, args)