diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-09-25 22:11:48 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-09-25 22:11:48 +0200 |
commit | 3e496b0ea31996b665824f45664dee1fdd73c4d0 (patch) | |
tree | ba186d3f36fe10fa470832b8d5ef9ec225740378 /runtime/indent | |
parent | 9af418427652562384744648d7d173a4bfebba95 (diff) | |
download | vim-git-3e496b0ea31996b665824f45664dee1fdd73c4d0.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/indent')
-rw-r--r-- | runtime/indent/cdl.vim | 2 | ||||
-rw-r--r-- | runtime/indent/html.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/indent/cdl.vim b/runtime/indent/cdl.vim index db2b9052b..5ec2a7b21 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 828bc3120..13adaae54 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) |