aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-28 23:27:35 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-04-28 23:39:24 +0200
commit40fb96c76a46a85adb6a62ab8d83e83fc8e7aca7 (patch)
tree376dbc0cea422b0b963c3823538cdfa70735ddc1 /runtime/indent
parenta5e9974ed77621c224b2b8fa49f76cab954fb2c6 (diff)
downloadrneovim-40fb96c76a46a85adb6a62ab8d83e83fc8e7aca7.tar.gz
rneovim-40fb96c76a46a85adb6a62ab8d83e83fc8e7aca7.tar.bz2
rneovim-40fb96c76a46a85adb6a62ab8d83e83fc8e7aca7.zip
vim-patch:3e496b0ea319
Updated runtime files. https://github.com/vim/vim/commit/3e496b0ea31996b665824f45664dee1fdd73c4d0 NA patches: vim-patch:8.0.0015 vim-patch:8.0.0016 vim-patch:177778575148
Diffstat (limited to 'runtime/indent')
-rw-r--r--runtime/indent/cdl.vim2
-rw-r--r--runtime/indent/html.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/indent/cdl.vim b/runtime/indent/cdl.vim
index db2b9052b2..5ec2a7b21a 100644
--- a/runtime/indent/cdl.vim
+++ b/runtime/indent/cdl.vim
@@ -16,7 +16,7 @@ if exists("*CdlGetIndent")
"finish
endif
-" find out if an "...=..." expresion its an asignment (or a conditional)
+" find out if an "...=..." expresion is an assignment (or a conditional)
" it scans 'line' first, and then the previos lines
fun! CdlAsignment(lnum, line)
let f = -1
diff --git a/runtime/indent/html.vim b/runtime/indent/html.vim
index 828bc3120b..13adaae54c 100644
--- a/runtime/indent/html.vim
+++ b/runtime/indent/html.vim
@@ -749,7 +749,7 @@ func! s:CssPrevNonComment(lnum, stopline)
while 1
let ccol = match(getline(lnum), '\*/')
if ccol < 0
- " No comment end thus its something else.
+ " No comment end thus it's something else.
return lnum
endif
call cursor(lnum, ccol + 1)