Skip to content

Commit 090103d

Browse files
committed
Whitespace fix.
1 parent d821b96 commit 090103d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Text/TeXMath/Writers/MathML.hs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ fromForm FPostfix = "postfix"
8080
fromForm FPrefix = "prefix"
8181

8282
makeScaled :: Rational -> Element -> Element
83-
makeScaled x = withAttribute "minsize" p . withAttribute "maxsize" p
83+
makeScaled x = withAttribute "minsize" p . withAttribute "maxsize" p
8484
. setAttribute "stretchy" "true"
8585
where p = T.pack $ printf "%d%%" (round (100*x) :: Int)
8686

@@ -142,11 +142,11 @@ setAttribute a v e = e { elAttribs = update (elAttribs e) }
142142
newAttr = Attr (unqual a) (T.unpack v)
143143
update [] = [newAttr]
144144
update (x:xs)
145-
| qName (attrKey x) == a =
145+
| qName (attrKey x) == a =
146146
newAttr : xs
147-
| otherwise =
147+
| otherwise =
148148
x : update xs
149-
149+
150150
accent :: T.Text -> Element
151151
accent = add_attr (Attr (unqual "accent") "true") .
152152
tunode "mo"

0 commit comments

Comments
 (0)