Skip to content

Commit 9afc512

Browse files
authored
Merge pull request #121 from Isti115/patch-1
Very minor typo fix
2 parents 62e5a2b + 2c98dfb commit 9afc512

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

syntax/haskell.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ syn match haskellLineComment "---*\([^-!#$%&\*\+./<=>\?@\\^|~].*\)\?$"
9090
syn match haskellBacktick "`[A-Za-z_][A-Za-z0-9_\.']*#\?`"
9191
syn region haskellString start=+"+ skip=+\\\\\|\\"+ end=+"+
9292
\ contains=@Spell
93-
syn match haskellIdentifier "[_a-z][a-zA-z0-9_']*" contained
93+
syn match haskellIdentifier "[_a-z][a-zA-Z0-9_']*" contained
9494
syn match haskellChar "\<'[^'\\]'\|'\\.'\|'\\u[0-9a-fA-F]\{4}'\>"
9595
syn match haskellType "\<[A-Z][a-zA-Z0-9_']*\>"
9696
syn region haskellBlockComment start="{-" end="-}"
@@ -106,7 +106,7 @@ syn keyword haskellTodo TODO FIXME contained
106106
syn match haskellShebang "\%^#!.*$"
107107
if !get(g:, 'haskell_disable_TH', 0)
108108
syn match haskellQuasiQuoted "." containedin=haskellQuasiQuote contained
109-
syn region haskellQuasiQuote matchgroup=haskellTH start="\[[_a-zA-Z][a-zA-z0-9._']*|" end="|\]"
109+
syn region haskellQuasiQuote matchgroup=haskellTH start="\[[_a-zA-Z][a-zA-Z0-9._']*|" end="|\]"
110110
syn region haskellTHBlock matchgroup=haskellTH start="\[\(d\|t\|p\)\?|" end="|]" contains=TOP
111111
syn region haskellTHDoubleBlock matchgroup=haskellTH start="\[||" end="||]" contains=TOP
112112
endif

0 commit comments

Comments
 (0)