diff options
author | Alexander <ilabdsf@gmail.com> | 2017-08-08 18:44:18 +0300 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-08-08 08:44:18 -0700 |
commit | c95cc813ccfbe507f30ace5e8d6d0f6787e75db0 (patch) | |
tree | f7c0c9d85c4e364521ae40b83ff742d6376cafc5 /src | |
parent | d752f855827fc6901f851549f8b9029edb1e2177 (diff) | |
download | pandoc-c95cc813ccfbe507f30ace5e8d6d0f6787e75db0.tar.gz |
Fix `blanklines' documentation (#3843)
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Pretty.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Pretty.hs b/src/Text/Pandoc/Pretty.hs index 1b3c647a1..b5600ad39 100644 --- a/src/Text/Pandoc/Pretty.hs +++ b/src/Text/Pandoc/Pretty.hs @@ -398,8 +398,8 @@ cr = Doc $ singleton CarriageReturn blankline :: Doc blankline = Doc $ singleton (BlankLines 1) --- | Inserts a blank lines unless they exists already. --- (@blanklines m <> blanklines n@ has the same effect as @blankline (max m n)@. +-- | Inserts blank lines unless they exist already. +-- (@blanklines m <> blanklines n@ has the same effect as @blanklines (max m n)@. blanklines :: Int -> Doc blanklines n = Doc $ singleton (BlankLines n) |