diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2014-08-18 09:21:42 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2014-08-18 09:21:42 +0100 |
commit | daef885a8a9866af5b486d21a1940d4e3d93d9d0 (patch) | |
tree | 943ad2d55aa88c92c267595971d6607abdc946f3 /libraries | |
parent | 2aabda1a836a5250c3176e8559a10479214a55f6 (diff) | |
download | haskell-daef885a8a9866af5b486d21a1940d4e3d93d9d0.tar.gz |
Fix broken link in Data.Data to SYB home page (Trac #9455)
Ralf Laemmel's page has disappeared, so I made it point to the Haskell
Wiki page instead.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/Data/Data.hs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libraries/base/Data/Data.hs b/libraries/base/Data/Data.hs index 49407fae16..095bca119f 100644 --- a/libraries/base/Data/Data.hs +++ b/libraries/base/Data/Data.hs @@ -8,19 +8,19 @@ -- Module : Data.Data -- Copyright : (c) The University of Glasgow, CWI 2001--2004 -- License : BSD-style (see the file libraries/base/LICENSE) --- +-- -- Maintainer : libraries@haskell.org -- Stability : experimental -- Portability : non-portable (local universal quantification) -- --- \"Scrap your boilerplate\" --- Generic programming in Haskell. --- See <http://www.cs.vu.nl/boilerplate/>. This module provides --- the 'Data' class with its primitives for generic programming, along --- with instances for many datatypes. It corresponds to a merge between --- the previous "Data.Generics.Basics" and almost all of --- "Data.Generics.Instances". The instances that are not present --- in this module were moved to the @Data.Generics.Instances@ module --- in the @syb@ package. +-- \"Scrap your boilerplate\" --- Generic programming in Haskell. See +-- <http://www.haskell.org/haskellwiki/Research_papers/Generics#Scrap_your_boilerplate.21>. +-- This module provides the 'Data' class with its primitives for +-- generic programming, along with instances for many datatypes. It +-- corresponds to a merge between the previous "Data.Generics.Basics" +-- and almost all of "Data.Generics.Instances". The instances that are +-- not present in this module were moved to the +-- @Data.Generics.Instances@ module in the @syb@ package. -- -- For more information, please visit the new -- SYB wiki: <http://www.cs.uu.nl/wiki/bin/view/GenericProgramming/SYB>. |