Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closes #76. Renamed OutputPrinter module to Printer and fixed a small… #77

Merged
merged 1 commit into from
Aug 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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