1
0
mirror of https://github.com/golang/go synced 2024-11-18 18:44:42 -07:00

internal/lsp/cmd: fix documentation

Change-Id: I60d6337b07b2cad4d20d877d61b11ebe33d26cf6
Reviewed-on: https://go-review.googlesource.com/c/tools/+/212582
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
This commit is contained in:
Daisuke Suzuki 2020-01-01 21:14:58 +09:00 committed by Rebecca Stambler
parent 6ed6e6036b
commit 27f5d1b104
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ type Application struct {
PrepareOptions func(*source.Options)
}
// Returns a new Application ready to run.
// New returns a new Application ready to run.
func New(name, wd string, env []string, options func(*source.Options)) *Application {
if wd == "" {
wd, _ = os.Getwd()

View File

@ -15,7 +15,7 @@ import (
"golang.org/x/tools/internal/tool"
)
// references implements the references verb for gopls
// symbols implements the symbols verb for gopls
type symbols struct {
app *Application
}