From baaa24a76036880e50a8cc3c46d0809cda8f7518 Mon Sep 17 00:00:00 2001 From: Yorick Peterse Date: Sun, 4 May 2014 18:06:43 +0200 Subject: [PATCH] Indentation fix in the lexer. --- lib/oga/xml/lexer.rl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/oga/xml/lexer.rl b/lib/oga/xml/lexer.rl index 325403b..1e8ea96 100644 --- a/lib/oga/xml/lexer.rl +++ b/lib/oga/xml/lexer.rl @@ -259,11 +259,11 @@ module Oga # Machine for processing double quoted strings. string_dquote := |* - ^dquote+ => { - emit(:T_STRING, ts, te) - }; + ^dquote+ => { + emit(:T_STRING, ts, te) + }; - dquote => { fret; }; + dquote => { fret; }; *|; # Machine for processing single quoted strings.