diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-11-22 07:43:48 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-11-22 07:43:48 -0800 |
commit | a008e57ddf13621039bcbf4e23177644c70ecc69 (patch) | |
tree | 4b598f5d9f13cf0b09addcad1e27a4efc058635f /src/Text/Pandoc | |
parent | f7e37141e5d6d03892148a6b66b0f544b0617c24 (diff) | |
download | pandoc-a008e57ddf13621039bcbf4e23177644c70ecc69.tar.gz |
hlint fixes
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Slides.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Slides.hs b/src/Text/Pandoc/Slides.hs index 878c900f7..1a27ab5ac 100644 --- a/src/Text/Pandoc/Slides.hs +++ b/src/Text/Pandoc/Slides.hs @@ -40,7 +40,7 @@ getSlideLevel = go 6 | otherwise = go least (x:xs) go least (_ : xs) = go least xs go least [] = least - nonHOrHR (Header _ _ _) = False + nonHOrHR (Header{}) = False nonHOrHR (HorizontalRule) = False nonHOrHR _ = True |