diff options
author | Ben Gamari <ben@smart-cactus.org> | 2017-11-20 17:13:16 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-11-20 17:13:16 -0500 |
commit | ddded7e68dc865b3b75a43f87379c3a54e0e692c (patch) | |
tree | f8c987d3799a3ba4c3071fe41807713d68818298 | |
parent | 25f36bd7ba6899be6c720292528c56bc35e0f089 (diff) | |
download | haskell-ddded7e68dc865b3b75a43f87379c3a54e0e692c.tar.gz |
ghc-pkg: Add missing newlines to usage message
-rw-r--r-- | utils/ghc-pkg/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/ghc-pkg/Main.hs b/utils/ghc-pkg/Main.hs index 9a2c99a08e..0e793b4917 100644 --- a/utils/ghc-pkg/Main.hs +++ b/utils/ghc-pkg/Main.hs @@ -271,8 +271,8 @@ usageHeader prog = substProg prog $ "\n" ++ " $p dot\n" ++ " Generate a graph of the package dependencies in a form suitable\n" ++ - " for input for the graphviz tools. For example, to generate a PDF" ++ - " of the dependency graph: ghc-pkg dot | tred | dot -Tpdf >pkgs.pdf" ++ + " for input for the graphviz tools. For example, to generate a PDF\n" ++ + " of the dependency graph: ghc-pkg dot | tred | dot -Tpdf >pkgs.pdf\n" ++ "\n" ++ " $p find-module {module}\n" ++ " List registered packages exposing module {module} in the global\n" ++ |