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

gopls/doc: minor fixes in design.md and implementation.md

A couple sentences are clarified in design.md, and a broken link is
fixed in implementation.md.

Change-Id: Ibbb4c2f74ce9e46c565a7e90798047e7168b076e
Reviewed-on: https://go-review.googlesource.com/c/tools/+/214798
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
This commit is contained in:
Rob Findley 2020-01-14 18:11:49 -05:00 committed by Robert Findley
parent f986e617de
commit e23c44e711
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ See Rebecca's excellent GopherCon keynote [talk] and [slides] for some more cont
* Command line speed
Although gopls will have a command line mode, it will be optimized for long running and not command responsiveness, as such it may not be the right tool for things like CI systems.
In such cases there will have to be an alternate tool using the same underlying libraries for consistency that can be used instead.
For such cases there will have to be an alternate tool using the same underlying libraries for consistency.
* Low memory environments
@ -41,7 +41,7 @@ See Rebecca's excellent GopherCon keynote [talk] and [slides] for some more cont
* Syntax highlighting
At the moment there is no editor that hands this across to a separate binary to do, and no standard way of doing it.
At the moment there is no editor that delegates this functionality to a separate binary, and no standard way of doing it.
## Existing solutions

View File

@ -18,7 +18,7 @@ In theory if only the View layer existed, the results would be identical, but sl
## Code location
gopls will be developed in the [x/tools] Go repository; the core packages are in [internal/lsp], and the binary and integration tests are located in [golsp].
gopls will be developed in the [x/tools] Go repository; the core packages are in [internal/lsp], and the binary and integration tests are located in [gopls].
Below is a list of the core packages of gopls, and their primary purpose: