summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Hakyll/Web/Redirect.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Hakyll/Web/Redirect.hs b/src/Hakyll/Web/Redirect.hs
index ead56fe..cd94fdc 100644
--- a/src/Hakyll/Web/Redirect.hs
+++ b/src/Hakyll/Web/Redirect.hs
@@ -35,7 +35,10 @@ import Hakyll.Core.Writable (Writable (..))
--
-- An example of a valid association list would be:
--
--- > brokenLinks = [("/Black-market archive", "/Black-market%20archives")]
+-- > brokenLinks =
+-- > [ ("projects.html", "http://github.com/gwern")
+-- > , ("/Black-market archive", "Black-market%20archives")
+-- > ]
--
-- In which case the functionality can then be used in `main` with a line like:
--