From 4156202c7c6716e553a049fa8a663e7409237824 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Wei=C3=9Fenfels?= Date: Sat, 1 Sep 2012 12:29:37 +0200 Subject: [PATCH] corrected comments of setExtension --- src/Hakyll/Core/Routes.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Hakyll/Core/Routes.hs b/src/Hakyll/Core/Routes.hs index c4a0db4..25e3a14 100644 --- a/src/Hakyll/Core/Routes.hs +++ b/src/Hakyll/Core/Routes.hs @@ -69,7 +69,7 @@ idRoute = Routes $ Just . toFilePath -- -- Example: -- --- > runRoute (setExtension "html") "foo/bar" +-- > runRoutes (setExtension "html") "foo/bar" -- -- Result: -- @@ -77,7 +77,7 @@ idRoute = Routes $ Just . toFilePath -- -- Example: -- --- > runRoute (setExtension "html") "posts/the-art-of-trolling.markdown" +-- > runRoutes (setExtension "html") "posts/the-art-of-trolling.markdown" -- -- Result: --