diff options
author | Hécate Moonlight <hecate+gitlab@glitchbra.in> | 2022-05-26 21:51:01 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-05-26 23:20:52 -0400 |
commit | ed37027f713bb6563fd98d144a39211339fd91a5 (patch) | |
tree | cb1cbf0634d6da96a18c6a4b78a4a24e508fcb66 | |
parent | d87530bbf497d21edb4a1dd5cb834fb42a49d1d8 (diff) | |
download | haskell-ed37027f713bb6563fd98d144a39211339fd91a5.tar.gz |
[base] Fix the links in the Data.Data module
fix #21658
fix #21657
fix #21657
-rw-r--r-- | libraries/base/Data/Data.hs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libraries/base/Data/Data.hs b/libraries/base/Data/Data.hs index 02fa6e7770..4ef7d00d03 100644 --- a/libraries/base/Data/Data.hs +++ b/libraries/base/Data/Data.hs @@ -21,8 +21,6 @@ -- Stability : stable -- Portability : non-portable (local universal quantification) -- --- \"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" @@ -30,8 +28,8 @@ -- 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>. +-- \"Scrap your boilerplate\" --- Generic programming in Haskell. See +-- <https://wiki.haskell.org/Research_papers/Generics#Scrap_your_boilerplate.21>. -- ----------------------------------------------------------------------------- |