diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-03-25 19:57:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-25 19:57:59 +0100 |
commit | 61205c1defb64ac5466496b5451e4a7f3171e21e (patch) | |
tree | 80f88f2592d2502bca56bd4c5a51905074aeb9c0 /runtime/autoload | |
parent | 174deafcef27bc98df36c952ee93e316488bc765 (diff) | |
download | rneovim-61205c1defb64ac5466496b5451e4a7f3171e21e.tar.gz rneovim-61205c1defb64ac5466496b5451e4a7f3171e21e.tar.bz2 rneovim-61205c1defb64ac5466496b5451e4a7f3171e21e.zip |
chore: fix typos (#17755)
Co-authored-by: Jordan Haine <jhaine@securitycompass.com>
Diffstat (limited to 'runtime/autoload')
-rw-r--r-- | runtime/autoload/health.vim | 2 | ||||
-rw-r--r-- | runtime/autoload/health/provider.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/autoload/health.vim b/runtime/autoload/health.vim index ec030adf04..1292e4344e 100644 --- a/runtime/autoload/health.vim +++ b/runtime/autoload/health.vim @@ -188,7 +188,7 @@ function! s:get_healthcheck_list(plugin_names) abort \ + nvim_get_runtime_file('lua/**/'.p.'/health/init.lua', v:true) \ + nvim_get_runtime_file('lua/**/'.p.'/health.lua', v:true) if len(paths) == 0 - let healthchecks += [[p, '', '']] " healthchek not found + let healthchecks += [[p, '', '']] " healthcheck not found else let healthchecks += map(uniq(sort(paths)), \'<SID>filepath_to_healthcheck(v:val)') diff --git a/runtime/autoload/health/provider.vim b/runtime/autoload/health/provider.vim index 6022e05c22..a01cb9631c 100644 --- a/runtime/autoload/health/provider.vim +++ b/runtime/autoload/health/provider.vim @@ -690,7 +690,7 @@ function! s:check_perl() abort if empty(perl_exec) if !empty(perl_warnings) call health#report_warn(perl_warnings, ['See :help provider-perl for more information.', - \ 'You may disable this provider (and warning) by adding `let g:loaded_node_provider = 0` to your init.vim']) + \ 'You may disable this provider (and warning) by adding `let g:loaded_perl_provider = 0` to your init.vim']) else call health#report_warn('No usable perl executable found') endif |