diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-02-01 11:29:47 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-02-02 10:06:39 +0100 |
commit | 8dd82ead7ddd65348bcbea4e2bb8defce4253173 (patch) | |
tree | 22887ccbb12f2801b467ea0e05261ff6c036b9e9 /compiler/utils/GraphOps.hs | |
parent | eedb3df0c1c28a7abc43705d614239c1c6199a1f (diff) | |
download | haskell-8dd82ead7ddd65348bcbea4e2bb8defce4253173.tar.gz |
Spelling fixes
Diffstat (limited to 'compiler/utils/GraphOps.hs')
-rw-r--r-- | compiler/utils/GraphOps.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/GraphOps.hs b/compiler/utils/GraphOps.hs index b4b3bd6d8e..0985797571 100644 --- a/compiler/utils/GraphOps.hs +++ b/compiler/utils/GraphOps.hs @@ -567,7 +567,7 @@ validateGraph doc isColored graph , badEdges <- minusUniqSet edges nodes , not $ isEmptyUniqSet badEdges = pprPanic "GraphOps.validateGraph" - ( text "Graph has edges that point to non-existant nodes" + ( text "Graph has edges that point to non-existent nodes" $$ text " bad edges: " <> pprUFM badEdges (vcat . map ppr) $$ doc ) |