aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-10-06 11:20:41 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-10-06 11:20:41 +1300
commit395c3a768d83771cb2806bf0c79474618125a705 (patch)
tree99021a783cc3b2aa3fa62278f0b316b201929301
parentCorrect patch#() relay to has() to add prefix (diff)
downloaddotfiles-395c3a768d83771cb2806bf0c79474618125a705.tar.gz
dotfiles-395c3a768d83771cb2806bf0c79474618125a705.zip
Tweak comment
-rw-r--r--vim/autoload/patch.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/autoload/patch.vim b/vim/autoload/patch.vim
index cbfa8c93..614be462 100644
--- a/vim/autoload/patch.vim
+++ b/vim/autoload/patch.vim
@@ -6,7 +6,7 @@
"
function! patch#(version) abort
- " If we're new enough, we can just run the native has()
+ " If we're new enough, we can just use the native has()
if has('patch-7.4.237')
return has('patch-'.a:version)
endif