Kaydet (Commit) 6b608974 authored tarafından Alexander's avatar Alexander

Fix Haskell single line comments by adding space

Haskell single line comments consist of at least two dashes "--",
not followed by special symbol.
So in practice everywhere in code you will see a space following "--".
Reference: Haskell 2010 Language Report -> Chapter 2 -> Lexical Structure
üst a291a423
......@@ -51,7 +51,7 @@ mime_type=text/x-haskell
#wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
# single comments, like # in this file
comment_single=--
comment_single=--\s
# multiline comments
comment_open={-
comment_close=-}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment