aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/dtrace.vim
diff options
context:
space:
mode:
authorWill Stamper <epmatsw@gmail.com>2014-08-24 16:28:39 -0500
committerWill Stamper <epmatsw@gmail.com>2014-08-24 18:40:06 -0500
commita1582a841b2864ad20c22cc18b04010f9a813128 (patch)
treeaab5efa74f5a4ee1df5f4a6dc864771ec4ec8842 /runtime/syntax/dtrace.vim
parentae1788d55d5f465891e1b72f7d49101b96e8b013 (diff)
downloadrneovim-a1582a841b2864ad20c22cc18b04010f9a813128.tar.gz
rneovim-a1582a841b2864ad20c22cc18b04010f9a813128.tar.bz2
rneovim-a1582a841b2864ad20c22cc18b04010f9a813128.zip
Spelling fixes
Diffstat (limited to 'runtime/syntax/dtrace.vim')
-rw-r--r--runtime/syntax/dtrace.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/syntax/dtrace.vim b/runtime/syntax/dtrace.vim
index 2f2d6e2cc7..493de1ed0f 100644
--- a/runtime/syntax/dtrace.vim
+++ b/runtime/syntax/dtrace.vim
@@ -47,7 +47,7 @@ exec 'syn match dtraceProbe "'.s:oneProbe.'\%(,\_s*'.s:oneProbe.'\)*\ze\_s\%({\|
" Also be careful not to eat `c = a / b; b = a / 2;`. We use the same
" technique as the dtrace lexer: a predicate has to be followed by {, ;, or
" EOF. Also note that dtrace doesn't allow an empty predicate // (we do).
-" This regex doesn't allow a divison operator in the predicate.
+" This regex doesn't allow a division operator in the predicate.
" Make sure that this matches the empty predicate as well.
" XXX: This doesn't work if followed by a comment.
syn match dtracePredicate "/\*\@!\_[^/]*/\ze\_s*\%({\|;\|\%$\)"