diff options
author | Ben Gamari <ben@smart-cactus.org> | 2016-01-09 13:48:23 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-01-09 17:24:22 +0100 |
commit | 8f60fd46172623b6ccdfd51a306f9ebd2172fdfd (patch) | |
tree | 5662c2335589972752f37047b09bba1559ab62a3 | |
parent | 86d06571f5ec4b9bfa24663c47adcbf3dc406480 (diff) | |
download | haskell-8f60fd46172623b6ccdfd51a306f9ebd2172fdfd.tar.gz |
docs: Fix DeriveAnyClass reference in release notes and ANNOUNCE
-rw-r--r-- | ANNOUNCE | 3 | ||||
-rw-r--r-- | docs/users_guide/8.0.1-notes.rst | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -13,7 +13,8 @@ of major features and numerous bug fixes. These include, * Support for record pattern synonyms - * The DeriveAnyClass extension to conveniently derive default instances + * The -XDeriveAnyClass extension learned to derive instances for classes with + associated types * More reliable DWARF debugging information diff --git a/docs/users_guide/8.0.1-notes.rst b/docs/users_guide/8.0.1-notes.rst index d3cdcdcdf4..872db8bd23 100644 --- a/docs/users_guide/8.0.1-notes.rst +++ b/docs/users_guide/8.0.1-notes.rst @@ -18,7 +18,7 @@ The highlights, since the 7.10 branch, are: - Support for :ref:`record pattern synonyms <record-patsyn>` -- ``-XDeriveAnyClass`` to conveniently derive default instances (see :ref:`derive-any-class`) +- The ``-XDeriveAnyClass`` extension learned to derive instances for classes with associated types (see :ref:`derive-any-class`) - More reliable DWARF debugging information |