aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-09-29 14:07:21 +0200
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-10-23 14:13:42 +0200
commit3a86b60032bd659c2b12e984abb40cee93568558 (patch)
tree4070063b1f97ea8ab1b91dab66629ffe6030013b /scripts
parentf6f2334ac28f41994ad6480b1a19e653c659662c (diff)
downloadrneovim-3a86b60032bd659c2b12e984abb40cee93568558.tar.gz
rneovim-3a86b60032bd659c2b12e984abb40cee93568558.tar.bz2
rneovim-3a86b60032bd659c2b12e984abb40cee93568558.zip
docs: misc
Co-authored-by: David Pedersen <limero@me.com> Co-authored-by: Gregory Anders <greg@gpanders.com> Co-authored-by: Leo Schlosser <Leo.Schlosser@Student.HTW-Berlin.de> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/gen_help_html.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_help_html.lua b/scripts/gen_help_html.lua
index 21d865309d..b8f80e94be 100644
--- a/scripts/gen_help_html.lua
+++ b/scripts/gen_help_html.lua
@@ -1294,7 +1294,7 @@ function M.gen(help_dir, to_dir, include, commit, parser_path)
end, 'valid directory')
vim.validate('to_dir', to_dir, 'string')
vim.validate('include', include, 'table', true)
- vim.validate('commit', commit, 'sring', true)
+ vim.validate('commit', commit, 'string', true)
vim.validate('parser_path', parser_path, function(f)
return vim.fn.filereadable(vim.fs.normalize(f)) == 1
end, true, 'valid vimdoc.{so,dll} filepath')