Skip to content

Commit

Permalink
Closes #76. Renamed OutputPrinter module to Printer and fixed a small…
Browse files Browse the repository at this point in the history
… typo.
  • Loading branch information
forketyfork committed Aug 27, 2020
1 parent e0bcffa commit bd1d717
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ more deeply nested. It would be even more difficult to read.

`pretty-simple` can be easily used from `ghci` when debugging.

When using `stack` to run `ghci`, just append append the `--package` flag to
When using `stack` to run `ghci`, just append the `--package` flag to
the command line to load `pretty-simple`.

```sh
Expand Down
2 changes: 1 addition & 1 deletion pretty-simple.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ library
, Text.Pretty.Simple.Internal.Color
, Text.Pretty.Simple.Internal.Expr
, Text.Pretty.Simple.Internal.ExprParser
, Text.Pretty.Simple.Internal.OutputPrinter
, Text.Pretty.Simple.Internal.Printer
build-depends: base >= 4.8 && < 5
, containers
, mtl >= 2.2
Expand Down
2 changes: 1 addition & 1 deletion src/Text/Pretty/Simple/Internal.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ module Text.Pretty.Simple.Internal
import Text.Pretty.Simple.Internal.Color as X
import Text.Pretty.Simple.Internal.ExprParser as X
import Text.Pretty.Simple.Internal.Expr as X
import Text.Pretty.Simple.Internal.OutputPrinter as X
import Text.Pretty.Simple.Internal.Printer as X
2 changes: 1 addition & 1 deletion src/Text/Pretty/Simple/Internal/Color.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
{-# LANGUAGE TemplateHaskell #-}

{-|
Module : Text.Pretty.Simple.Internal.OutputPrinter
Module : Text.Pretty.Simple.Internal.Color
Copyright : (c) Dennis Gosnell, 2016
License : BSD-style (see LICENSE file)
Maintainer : [email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
{-# LANGUAGE ScopedTypeVariables #-}

{-|
Module : Text.Pretty.Simple.Internal.OutputPrinter
Module : Text.Pretty.Simple.Internal.Printer
Copyright : (c) Dennis Gosnell, 2016
License : BSD-style (see LICENSE file)
Maintainer : [email protected]
Stability : experimental
Portability : POSIX
-}
module Text.Pretty.Simple.Internal.OutputPrinter
module Text.Pretty.Simple.Internal.Printer
where

-- We don't need these imports for later GHCs as all required functions
Expand Down

0 comments on commit bd1d717

Please sign in to comment.