diff options
author | Hécate Moonlight <hecate+gitlab@glitchbra.in> | 2022-06-14 20:46:13 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-06-16 16:30:00 -0400 |
commit | ecbf86853acd64ea1ee1756216233662a0bdb80e (patch) | |
tree | 865b3f84abd889a0240f9a6ae03f821cba8b3481 /libraries | |
parent | 031721163eb6e713dd67e1ac512ae137c57ba1c2 (diff) | |
download | haskell-ecbf86853acd64ea1ee1756216233662a0bdb80e.tar.gz |
Repair dead link in TH haddocks
Closes #21724
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/template-haskell/Language/Haskell/TH.hs | 2 | ||||
-rw-r--r-- | libraries/template-haskell/Language/Haskell/TH/Syntax.hs | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libraries/template-haskell/Language/Haskell/TH.hs b/libraries/template-haskell/Language/Haskell/TH.hs index 6179fca7e9..ea5df6b1f9 100644 --- a/libraries/template-haskell/Language/Haskell/TH.hs +++ b/libraries/template-haskell/Language/Haskell/TH.hs @@ -1,7 +1,7 @@ {- | The public face of Template Haskell For other documentation, refer to: -<http://www.haskell.org/haskellwiki/Template_Haskell> +<https://wiki.haskell.org/Template_Haskell> -} {-# LANGUAGE Safe #-} diff --git a/libraries/template-haskell/Language/Haskell/TH/Syntax.hs b/libraries/template-haskell/Language/Haskell/TH/Syntax.hs index 4d34d1d6fc..48db744f72 100644 --- a/libraries/template-haskell/Language/Haskell/TH/Syntax.hs +++ b/libraries/template-haskell/Language/Haskell/TH/Syntax.hs @@ -26,6 +26,9 @@ module Language.Haskell.TH.Syntax -- * Language extensions , module Language.Haskell.TH.LanguageExtensions , ForeignSrcLang(..) + -- * Notes + -- ** Unresolved Infix + -- $infix ) where import Data.Data hiding (Fixity(..)) @@ -2083,6 +2086,7 @@ Note [Unresolved infix] ~~~~~~~~~~~~~~~~~~~~~~~ -} {- $infix #infix# + When implementing antiquotation for quasiquoters, one often wants to parse strings into expressions: |