From 2e9eefc1bb8164cb8da0a177229d7f572a0694d3 Mon Sep 17 00:00:00 2001 From: Heyward Fann Date: Tue, 25 Feb 2025 10:28:10 +0800 Subject: [PATCH] chore(doc): typos (#5264) [skip ci] --- doc/coc-api.txt | 4 ++-- doc/coc.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/coc-api.txt b/doc/coc-api.txt index 3dad7451395..6fc70d3f274 100644 --- a/doc/coc-api.txt +++ b/doc/coc-api.txt @@ -153,7 +153,7 @@ Optional functions: ~ completion, the returned col must <= current cursor col. • `coc#source#{name}#on_complete(item)` Called with selected complete item when user confirm the completion by |coc#pum#confirm()| or - |coc#_select_confirm()|. Normally used for apply nesessary edits to the + |coc#_select_confirm()|. Normally used for apply necessary edits to the buffer. • `coc#source#{name}#on_enter(option)` Called on |BufEnter| with option contains: @@ -289,7 +289,7 @@ activated during coc.nvim initialize. Other possible events: `"workspaceContains:**/package.json"` Optional `contributes` property contains the meta data that contributed to -coc.nvim, inclduing: +coc.nvim, including: • rootPatterns: The patterns to resolve |coc-workspace-folders| for associated filetype. diff --git a/doc/coc.txt b/doc/coc.txt index 12c002cd761..776cbdbe092 100644 --- a/doc/coc.txt +++ b/doc/coc.txt @@ -1849,7 +1849,7 @@ g:coc_status_warning_sign *g:coc_status_warning_sign* g:coc_quickfix_open_command *g:coc_quickfix_open_command* Command used for open quickfix list. To jump fist position after - quickfix list opend, you can use: + quickfix list opened, you can use: > let g:coc_quickfix_open_command = 'copen|cfirst' <