From 7b40534bcc40b7c82cde5afaf625b2f9809f5e0c Mon Sep 17 00:00:00 2001 From: Boyd Stephen Smith Jr Date: Sat, 16 Nov 2013 19:15:30 -0600 Subject: [PATCH] Reflow. --- Cryptsy/API/Public/Order.hs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Cryptsy/API/Public/Order.hs b/Cryptsy/API/Public/Order.hs index 4fc6fb3..56b6a99 100644 --- a/Cryptsy/API/Public/Order.hs +++ b/Cryptsy/API/Public/Order.hs @@ -52,8 +52,7 @@ withText :: (Text -> Parser p) -- ^ price parser -> (Text -> Parser q) -- ^ quantity parser -> (Text -> Parser t) -- ^ total parser -> Object -> Parser (GOrder p q t) -withText parsePrice parseQuantity parseTotal = - withComponents - (Aeson.withText "price" parsePrice ) - (Aeson.withText "quantity" parseQuantity) - (Aeson.withText "total" parseTotal ) +withText parsePrice parseQuantity parseTotal = withComponents + (Aeson.withText "price" parsePrice ) + (Aeson.withText "quantity" parseQuantity) + (Aeson.withText "total" parseTotal ) -- 2.11.4.GIT