diff options
author | Takenobu Tani <takenobu.hs@gmail.com> | 2020-08-06 18:51:14 +0900 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2020-08-06 19:46:46 -0400 |
commit | 9570c21295a2b4a1d1e40939869124f0b9b9bf91 (patch) | |
tree | 9d34401985571ab45cec45fdd59ca832ebd2f4aa /docs/users_guide/exts/lambda_case.rst | |
parent | 63348155404c64334fa864454132630f9d2a4d7f (diff) | |
download | haskell-9570c21295a2b4a1d1e40939869124f0b9b9bf91.tar.gz |
users-guide: Rename 8.12 to 9.0
GHC 8.12.1 has been renamed to GHC 9.0.1.
See also:
https://mail.haskell.org/pipermail/ghc-devs/2020-July/019083.html
[skip ci]
Diffstat (limited to 'docs/users_guide/exts/lambda_case.rst')
-rw-r--r-- | docs/users_guide/exts/lambda_case.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/exts/lambda_case.rst b/docs/users_guide/exts/lambda_case.rst index efcb6b6474..74bc84e164 100644 --- a/docs/users_guide/exts/lambda_case.rst +++ b/docs/users_guide/exts/lambda_case.rst @@ -25,7 +25,7 @@ Note that ``\case`` starts a layout, so you can write :: ... pN -> eN -Additionally, since GHC 8.12.1, combining :extension:`LambdaCase` with +Additionally, since GHC 9.0.1, combining :extension:`LambdaCase` with :extension:`Arrows` allows ``\case`` syntax to be used as a command in ``proc`` notation: :: |