From 649439e033525afb9801a27e56fbb5d2c355e84b Mon Sep 17 00:00:00 2001 From: Kolja Lampe Date: Wed, 15 Jan 2020 00:11:54 +0100 Subject: [PATCH] Use correct order when resolving comment types Closes #58 --- syntaxes/elm.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/syntaxes/elm.json b/syntaxes/elm.json index dad522a..96b34f4 100644 --- a/syntaxes/elm.json +++ b/syntaxes/elm.json @@ -29,14 +29,14 @@ "include": "#type-alias-declaration" }, { - "include": "#string-double" + "include": "#string-triple" + }, + { + "include": "#string-quote" }, { "include": "#char" }, - { - "include": "#string-triple" - }, { "comment": "Floats are always decimal", "match": "\\b([0-9]+\\.[0-9]+([eE][+-]?[0-9]+)?|[0-9]+[eE][+-]?[0-9]+)\\b", @@ -311,7 +311,7 @@ } ] }, - "string-double": { + "string-quote": { "name": "string.quoted.double.elm", "begin": "\"", "beginCaptures": {