Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix minor typos in vim-go.txt #3638

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions doc/vim-go.txt
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ CTRL-t
:GoCoverage[!] [options]

Create a coverage profile and annotates the current file's source code. If
called again it rerurns the tests.
called again it reruns the tests.

If [!] is not given the first error is jumped to.

Expand Down Expand Up @@ -1262,8 +1262,8 @@ cleaned for each package after `60` seconds. This can be changed with the

*go#complete#GetInfo()*

Returns the description of the identifer under the cursor. Can be used to plug
into the statusline.
Returns the description of the identifier under the cursor. Can be used
to plug into the statusline.

*go#complete#Complete()*

Expand Down Expand Up @@ -1674,7 +1674,7 @@ an empty list; `staticcheck`'s `-checks` flag will not be used.
let g:go_metalinter_autosave_enabled = ['all']
<

When `g:go_metalinter_command is set to `golangci-lint'`, the default value is
When `g:go_metalinter_command is set to `golangci-lint`, the default value is
>
let g:go_metalinter_autosave_enabled = ['vet', 'revive']
<
Expand All @@ -1690,7 +1690,7 @@ an empty list; `staticcheck`'s `-checks` flag will not be used.
let g:go_metalinter_enabled = ['all']
<

When `g:go_metalinter_command` is set to `golangci-lint'`, the default value
When `g:go_metalinter_command` is set to `golangci-lint`, the default value
is
>
let g:go_metalinter_enabled = ['vet', 'revive', 'errcheck']
Expand Down
Loading