Skip to content

Commit

Permalink
Fix `blanklines' documentation (#3843)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander authored and jgm committed Aug 8, 2017
1 parent d752f85 commit c95cc81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Text/Pandoc/Pretty.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit c95cc81

Please sign in to comment.