summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-08-11 18:10:12 -0400
committerBen Gamari <ben@smart-cactus.org>2022-08-15 17:11:26 -0400
commita77c746233885f7dc4daa082257410cb5d3e3f8e (patch)
tree6ae99d055fe6e53f78484c3ca6e000d280d84edd
parentf7322f2a176475611f34ecf695271e34799c08ec (diff)
downloadhaskell-a77c746233885f7dc4daa082257410cb5d3e3f8e.tar.gz
relnotes: Fix typo
-rw-r--r--docs/users_guide/9.4.1-notes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/9.4.1-notes.rst b/docs/users_guide/9.4.1-notes.rst
index 8f2f6efe32..db2fcf4d77 100644
--- a/docs/users_guide/9.4.1-notes.rst
+++ b/docs/users_guide/9.4.1-notes.rst
@@ -104,7 +104,7 @@ Language
- GHC Proposal `#302 <https://github.com/ghc-proposals/ghc-proposals/blob/master/proposals/0302-cases.rst>`_ has been implemented.
This means under ``-XLambdaCase``, a new expression heralded by ``\cases`` is
available, which works like ``\case`` but can match on multiple patterns.
- This means constructor patterns with arguments have to parenthesized here,
+ This means constructor patterns with arguments have to be parenthesized here,
just like in lambda expressions.
- The parsing of implicit parameters is slightly more permissive, as GHC now allows ::