From 4e6356559c8cd44dbcaa765d1f39e176064526ec Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 22 Jun 2023 03:44:51 -0700 Subject: test: spellcheck :help (vimdoc) files #24109 Enforce consistent terminology (defined in `gen_help_html.lua:spell_dict`) for common misspellings. This does not spellcheck English in general (perhaps a future TODO, though it may be noisy). --- runtime/doc/develop.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime/doc/develop.txt') diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt index be4068d8c8..db878ac304 100644 --- a/runtime/doc/develop.txt +++ b/runtime/doc/develop.txt @@ -99,8 +99,8 @@ Examples: scripting is performed by an external host process implemented in ~2k lines of Python. -The provider framework invokes VimL from C. It is composed of two functions -in eval.c: +The provider framework invokes Vimscript from C. It is composed of two +functions in eval.c: - eval_call_provider(name, method, arguments, discard): calls provider#{name}#Call with the method and arguments. If discard is true, any @@ -429,7 +429,7 @@ Examples of API-client package names: - GOOD: nvim-racket - GOOD: pynvim - BAD: python-client -- BAD: neovim +- BAD: neovim_ API client implementation guidelines ~ -- cgit