From 0ad582562ba79e082417d5aaa3d7733859e55306 Mon Sep 17 00:00:00 2001 From: Alexander Batischev Date: Thu, 15 Jul 2021 18:50:47 +0300 Subject: Avoid "Empty 'do' block" error in GitHub tutorial (#861) Report and fix by @alexandroid000. Fixes #860. --- web/tutorials/github-pages-tutorial.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/tutorials/github-pages-tutorial.md b/web/tutorials/github-pages-tutorial.md index acecb38..2f6e82b 100644 --- a/web/tutorials/github-pages-tutorial.md +++ b/web/tutorials/github-pages-tutorial.md @@ -66,8 +66,7 @@ config = defaultConfiguration } main :: IO () -main = do - hakyllWith config $ do +main = hakyllWith config $ do ... ``` -- cgit v1.2.3