diff options
author | nineonine <mail4chemik@gmail.com> | 2019-10-07 13:45:29 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-10-13 06:31:40 -0400 |
commit | 5ab1a28d91e2e5331bf20b1e3dc0dff793ebca8b (patch) | |
tree | b3895afbc4efd028c0bc0a0f224461d2e9c4a3a4 /docs | |
parent | 226d86d29842f894869e23ddb1197d04dacae7f7 (diff) | |
download | haskell-5ab1a28d91e2e5331bf20b1e3dc0dff793ebca8b.tar.gz |
Template Haskell: make unary tuples legal (#16881)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/8.10.1-notes.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/users_guide/8.10.1-notes.rst b/docs/users_guide/8.10.1-notes.rst index 77c1469639..3251b326d5 100644 --- a/docs/users_guide/8.10.1-notes.rst +++ b/docs/users_guide/8.10.1-notes.rst @@ -171,6 +171,10 @@ Template Haskell :extension:`DeriveLift` has been simplified to take advantage of expression quotations. +- Explicit boxed 1-tuples from `HsSyn` are now treated as actual 1-tuples, + without flattening. In most of the cases these will be obtained using + Template Haskell since it is uncommon to deal with 1-tuples in the source. + ``ghc-prim`` library ~~~~~~~~~~~~~~~~~~~~ |