Skip to content
This repository was archived by the owner on Oct 26, 2024. It is now read-only.

Commit e80eb0a

Browse files
committed
Fix comment typos.
1 parent c0753fe commit e80eb0a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

syntax/javascript.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ if !exists("main_syntax")
1818
let main_syntax = 'javascript'
1919
endif
2020

21-
"" Drop fold if it set but VIM doesn't support it.
21+
"" Drop fold if it is set but VIM doesn't support it.
2222
let b:javascript_fold='true'
2323
if version < 600 " Don't support the old version
2424
unlet! b:javascript_fold
2525
endif
2626

27-
"" dollar sigh is permittd anywhere in an identifier
27+
"" dollar sign is permittd anywhere in an identifier
2828
setlocal iskeyword+=$
2929

3030
syntax sync fromstart
@@ -83,7 +83,7 @@ syntax match javaScriptLabel /\(?\s*\)\@<!\<\w\+\(\s*:\)\@=/
8383
"" JavaScript Prototype
8484
syntax keyword javaScriptPrototype prototype
8585

86-
"" Programm Keywords
86+
"" Program Keywords
8787
syntax keyword javaScriptSource import export
8888
syntax keyword javaScriptType const undefined var void yield
8989
syntax keyword javaScriptOperator delete new in instanceof let typeof

0 commit comments

Comments
 (0)