diff options
Diffstat (limited to 'web/tutorials/03-arrows.markdown')
-rw-r--r-- | web/tutorials/03-arrows.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/tutorials/03-arrows.markdown b/web/tutorials/03-arrows.markdown index 442fb3b..8c92c2b 100644 --- a/web/tutorials/03-arrows.markdown +++ b/web/tutorials/03-arrows.markdown @@ -22,7 +22,7 @@ has a `published` metadata element that does not have the value isPublished :: Page a -> Bool isPublished p = let published = getField "published" p in - published /= "" && published /= "false" + published /= "" && published /= "false" ~~~~~ The next step is to write a function that tags a page with its |