summaryrefslogtreecommitdiff
path: root/testsuite/tests/ado/ado005.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ado/ado005.stderr')
-rw-r--r--testsuite/tests/ado/ado005.stderr12
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuite/tests/ado/ado005.stderr b/testsuite/tests/ado/ado005.stderr
index 4bfc79eca4..90d0b023bf 100644
--- a/testsuite/tests/ado/ado005.stderr
+++ b/testsuite/tests/ado/ado005.stderr
@@ -11,11 +11,11 @@ ado005.hs:8:3: error:
test :: Applicative f => (Int -> f Int) -> f Int
In a stmt of a 'do' block: x <- f 3
In the expression:
- do { x <- f 3;
- y <- f x;
- return (x + y) }
+ do x <- f 3
+ y <- f x
+ return (x + y)
In an equation for ‘test’:
test f
- = do { x <- f 3;
- y <- f x;
- return (x + y) }
+ = do x <- f 3
+ y <- f x
+ return (x + y)