diff options
author | Chris Martin <ch.martin@gmail.com> | 2017-06-26 14:55:15 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-06-27 10:24:42 -0400 |
commit | 914962ca23e407efdd3429dc89adcca7bee15f28 (patch) | |
tree | f76e8af49be9fd4241e688a5d1e65f6cbf9cf53b /docs/users_guide/extending_ghc.rst | |
parent | b8f87363cfc6ddeacc67d99a79e316980ffd1f5c (diff) | |
download | haskell-914962ca23e407efdd3429dc89adcca7bee15f28.tar.gz |
Update docs to reflect changes to DeriveDataTypeable
Diffstat (limited to 'docs/users_guide/extending_ghc.rst')
-rw-r--r-- | docs/users_guide/extending_ghc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/extending_ghc.rst b/docs/users_guide/extending_ghc.rst index 10c1b3d8c2..a7fb53844c 100644 --- a/docs/users_guide/extending_ghc.rst +++ b/docs/users_guide/extending_ghc.rst @@ -425,7 +425,7 @@ will print out the name of any top-level non-recursive binding with the import Control.Monad (unless) import Data.Data - data SomeAnn = SomeAnn deriving (Data, Typeable) + data SomeAnn = SomeAnn deriving Data plugin :: Plugin plugin = defaultPlugin { |