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

internal/lsp/debug: add newlines to debug messages

Change-Id: Ie8232bf857b8a277abb789e3788a6b6e12048731
Reviewed-on: https://go-review.googlesource.com/c/tools/+/181938
Run-TryBot: Rebecca Stambler <rstambler@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Cottrell <iancottrell@google.com>
This commit is contained in:
Rebecca Stambler 2019-06-12 12:38:51 -04:00
parent ecc01b7716
commit 7db4ac6d26
2 changed files with 2 additions and 2 deletions

View File

@ -12,5 +12,5 @@ import (
)
func printBuildInfo(w io.Writer, verbose bool, mode PrintMode) {
fmt.Fprintf(w, "version %s, built in $GOPATH mode", Version)
fmt.Fprintf(w, "version %s, built in $GOPATH mode\n", Version)
}

View File

@ -22,7 +22,7 @@ func printBuildInfo(w io.Writer, verbose bool, mode PrintMode) {
}
}
} else {
fmt.Fprintf(w, "version %s, built in $GOPATH mode", Version)
fmt.Fprintf(w, "version %s, built in $GOPATH mode\n", Version)
}
}