From 5ce515d224c1a7156756cd21f652ca679b96c92b Mon Sep 17 00:00:00 2001 From: Yorick Peterse Date: Wed, 12 Mar 2014 22:42:13 +0100 Subject: [PATCH] Small line wrapping change in the lexer. --- lib/oga/lexer.rl | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/oga/lexer.rl b/lib/oga/lexer.rl index 66f7de5..0739681 100644 --- a/lib/oga/lexer.rl +++ b/lib/oga/lexer.rl @@ -299,10 +299,7 @@ module Oga }; # Attributes and their values. - element_name - %{ - t(:T_ATTR, @ts, p) - } + element_name %{ t(:T_ATTR, @ts, p) } # The value of the attribute. Attribute values are not required. e.g. # in

data-foo would be a boolean attribute.