diff options
author | Gabor Greif <ggreif@gmail.com> | 2018-12-15 12:44:59 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2018-12-17 15:07:08 +0100 |
commit | caf50f631f0216fc11b653b1d0f34e7ca578ec45 (patch) | |
tree | 5abd3c388a22e375d211439849a1d136157173a4 /compiler/utils/Pretty.hs | |
parent | f99d898ba384b7d3ace7aae71b0125ba645e09cb (diff) | |
download | haskell-caf50f631f0216fc11b653b1d0f34e7ca578ec45.tar.gz |
Stomp a few typos and grammaros
Also use 'id'
Diffstat (limited to 'compiler/utils/Pretty.hs')
-rw-r--r-- | compiler/utils/Pretty.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/Pretty.hs b/compiler/utils/Pretty.hs index 32b982855a..7d06d74016 100644 --- a/compiler/utils/Pretty.hs +++ b/compiler/utils/Pretty.hs @@ -189,7 +189,7 @@ Laws for oneLiner <o1> oneLiner (nest k p) = nest k (oneLiner p) <o2> oneLiner (x <> y) = oneLiner x <> oneLiner y -You might think that the following verion of <m1> would +You might think that the following version of <m1> would be neater: <3 NO> (text s <> x) $$ y = text s <> ((empty <> x)) $$ |