gopls does not run `goimports` upon `textDocument/formatting` method. Please see https://github.com/autozimu/LanguageClient-neovim/issues/854
diff --git a/gopls.md b/gopls.md
index 7efc3d9..8f51eb1 100644
--- a/gopls.md
+++ b/gopls.md
@@ -111,7 +111,7 @@
 let g:LanguageClient_serverCommands = {
        \ 'go': ['gopls']
        \ }
-" Run gofmt and goimports on save
+" Run gofmt on save
 autocmd BufWritePre *.go :call LanguageClient#textDocument_formatting_sync()
 ```