summaryrefslogtreecommitdiff
path: root/src/Obs/Pretty.idr
diff options
context:
space:
mode:
Diffstat (limited to 'src/Obs/Pretty.idr')
-rw-r--r--src/Obs/Pretty.idr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Obs/Pretty.idr b/src/Obs/Pretty.idr
index 656f352..f32542e 100644
--- a/src/Obs/Pretty.idr
+++ b/src/Obs/Pretty.idr
@@ -33,7 +33,7 @@ prettyLambda d name body =
export
prettyApp : (prec : Prec) -> (head : Doc ann) -> (tail : List (Doc ann)) -> Doc ann
prettyApp d head tail =
- parenthesise (d >= App) $ align $ group $ vsep (align head :: map (hang 2) tail)
+ parenthesise (d >= App) $ hang 2 $ group $ vsep (align head :: tail)
-- first and second are rendered Open
export