diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-08-24 22:13:56 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-08-24 22:13:56 -0400 |
commit | 92d27b7290914585f11d3a07e9bbbc504b8c9ca1 (patch) | |
tree | 6063d3d94af147d2d48d70c8201ef3d81a3c9787 /runtime/syntax/aspvbs.vim | |
parent | 3623a028263fa321f0790fe1132ac2934d6d5dc7 (diff) | |
parent | a1582a841b2864ad20c22cc18b04010f9a813128 (diff) | |
download | rneovim-92d27b7290914585f11d3a07e9bbbc504b8c9ca1.tar.gz rneovim-92d27b7290914585f11d3a07e9bbbc504b8c9ca1.tar.bz2 rneovim-92d27b7290914585f11d3a07e9bbbc504b8c9ca1.zip |
Merge pull request #1111 from epmatsw/spellcheck2
More Typo Fixes
Diffstat (limited to 'runtime/syntax/aspvbs.vim')
-rw-r--r-- | runtime/syntax/aspvbs.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/aspvbs.vim b/runtime/syntax/aspvbs.vim index 07c129e463..f1435cb04b 100644 --- a/runtime/syntax/aspvbs.vim +++ b/runtime/syntax/aspvbs.vim @@ -40,7 +40,7 @@ syn match AspVBSVariableComplex contained "\<\(arr\|ary\|obj\)\u\w*" " Functions and methods that are in VB but will cause errors in an ASP page -" This is helpfull if your porting VB code to ASP +" This is helpful if you're porting VB code to ASP " I removed (Count, Item) because these are common variable names in AspVBScript syn keyword AspVBSError contained Val Str CVar CVDate DoEvents GoSub Return GoTo syn keyword AspVBSError contained Stop LinkExecute Add Type LinkPoke @@ -62,7 +62,7 @@ syn match AspVBSError contained "\<Option\s\+\(Base\|Compare\|Private\s\+Module\ syn match AspVBSError contained "Respon\?ce\.\S*" syn match AspVBSError contained "Respose\.\S*" " When I looked up the VBScript syntax it mentioned that Property Get/Set/Let -" statements are illegal, however, I have recived reports that they do work. +" statements are illegal, however, I have received reports that they do work. " So I commented it out for now. " syn match AspVBSError contained "\<Property\s\+\(Get\|Let\|Set\)\>" |