From 264be25aa1d4210050cb1ebd508106b087e2c80a Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 24 May 2016 16:24:20 +0300 Subject: [PATCH] Use full English names when explaining functions --- plugin/NERD_commenter.vim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index d2b3e34..2372ecd 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -815,7 +815,7 @@ function s:CommentLinesMinimal(firstLine, lastLine) let sexyNested = s:SexyNested() "if we need to use place holders for the comment, make sure they are - "enabled for this filetype, or the delims allow nesting + "enabled for this filetype, or the delimiterss allow nesting if !g:NERDUsePlaceHolders && !sexyNested && s:DoesBlockHaveMultipartDelim(a:firstLine, a:lastLine) throw 'NERDCommenter.Settings exception: Place holders are required but disabled.' endif @@ -1693,7 +1693,7 @@ function s:AltMultipart() endfunction " Function: s:AltNested() {{{2 -" returns 1 if the alternate multipart (if any) delims allow nesting +" returns 1 if the alternate multipart (if any) delimiters allow nesting function s:AltNested() return b:NERDCommenterDelims['nestedAlt'] endfunction @@ -2629,7 +2629,7 @@ function s:NerdEcho(msg, typeOfMsg) endfunction " Function: s:Nested() {{{2 -" returns 1 if the current multipart (if any) delims allow nesting +" returns 1 if the current multipart (if any) delimiters allow nesting function s:Nested() return b:NERDCommenterDelims['nested'] endfunction