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/html.vim | |
parent | 9af418427652562384744648d7d173a4bfebba95 (diff) | |
download | vim-git-3e496b0ea31996b665824f45664dee1fdd73c4d0.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/indent/html.vim')
-rw-r--r-- | runtime/indent/html.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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) |