summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2015-08-12 13:32:08 +0200
committerBen Gamari <ben@smart-cactus.org>2015-08-12 17:37:46 +0200
commitb0dee6104fed18f6a6c894caaa621a8488d9965f (patch)
tree7df008be3df8ef98ff7cb08daa29ef2ab36cb2be
parentf903949beee3a4e0a925003b5553066c9f513c11 (diff)
downloadhaskell-b0dee6104fed18f6a6c894caaa621a8488d9965f.tar.gz
template-haskell: Add changelog entry to infix type operators
-rw-r--r--libraries/template-haskell/changelog.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/libraries/template-haskell/changelog.md b/libraries/template-haskell/changelog.md
index 864abe52bf..3620d22e2f 100644
--- a/libraries/template-haskell/changelog.md
+++ b/libraries/template-haskell/changelog.md
@@ -4,6 +4,12 @@
* Bundled with GHC 7.12.1
+ * The compiler can now resolve infix operator fixities in types on its own.
+ The `UInfixT` constructor of `Type` is analoguous to `UInfixE` for expressions
+ and can contain a tree of infix type applications which will be reassociated
+ according to the fixities of the operators. The `ParensT` constructor can be
+ used to explicitly group expressions.
+
* TODO: document API changes and important bugfixes