summaryrefslogtreecommitdiff
path: root/runtime/autoload
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-07-26 17:00:44 +0200
committerBram Moolenaar <Bram@vim.org>2020-07-26 17:00:44 +0200
commit2547aa930b59f5e2bcb70e81d5a57ed461e59b4f (patch)
tree83dd4b387047f169ffffaed3585271574278c5c5 /runtime/autoload
parentd3bb6a82a51d549bbd597bb4e94d8f074009be2a (diff)
downloadvim-git-2547aa930b59f5e2bcb70e81d5a57ed461e59b4f.tar.gz
Update runtime files.
Diffstat (limited to 'runtime/autoload')
-rw-r--r--runtime/autoload/decada.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/decada.vim b/runtime/autoload/decada.vim
index 7741ff057..5124429a7 100644
--- a/runtime/autoload/decada.vim
+++ b/runtime/autoload/decada.vim
@@ -25,7 +25,7 @@ function decada#Unit_Name () dict " {{{1
" Convert filename into acs unit:
" 1: remove the file extenstion.
" 2: replace all double '_' or '-' with an dot (which denotes a separate)
- " 3: remove a trailing '_' (wich denotes a specification)
+ " 3: remove a trailing '_' (which denotes a specification)
return substitute (substitute (expand ("%:t:r"), '__\|-', ".", "g"), '_$', "", '')
endfunction decada#Unit_Name " }}}1