From 2d56c7cc148f8c762c7b215f15477405b72c1ccc Mon Sep 17 00:00:00 2001 From: Roly Perera Date: Tue, 19 Sep 2023 07:26:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=A9=20[layout]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Pretty.purs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Pretty.purs b/src/Pretty.purs index af56961f2..71fc14e0f 100644 --- a/src/Pretty.purs +++ b/src/Pretty.purs @@ -137,10 +137,10 @@ instance Ann a => Pretty (Expr a) where pretty (Dictionary ann sss) = (highlightIf ann $ dictBrackets (pretty sss)) pretty (Matrix ann e (x × y) e') = highlightIf ann $ arrayBrackets - ( pretty e .<>. text str.bar .<>. parentheses (text x .<>. text str.comma .<>. text y) - .<>. text str.in_ - .<>. pretty e' - ) + ( pretty e .<>. text str.bar .<>. parentheses (text x .<>. text str.comma .<>. text y) + .<>. text str.in_ + .<>. pretty e' + ) pretty (Lambda cs) = parentheses (text str.fun .<>. pretty cs) pretty (Project s x) = pretty s .<>. text str.dot .<>. text x pretty (App s s') = prettyAppChain (App s s')