summaryrefslogtreecommitdiff
path: root/compiler/nativeGen
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2019-01-22 12:07:47 +0100
committerBen Gamari <ben@well-typed.com>2019-01-23 14:07:28 -0500
commitbb2acfe0ec4c196a87218709ee28327845d62dc4 (patch)
tree5b7c314caa4944997e7faa51ba3fd9c5328fc913 /compiler/nativeGen
parentc9a02dfc32ea4304c1c0d02bd8091fd5d045741f (diff)
downloadhaskell-bb2acfe0ec4c196a87218709ee28327845d62dc4.tar.gz
A few typofixes
Diffstat (limited to 'compiler/nativeGen')
-rw-r--r--compiler/nativeGen/CFG.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nativeGen/CFG.hs b/compiler/nativeGen/CFG.hs
index b5b0fd7ca9..b19db02b13 100644
--- a/compiler/nativeGen/CFG.hs
+++ b/compiler/nativeGen/CFG.hs
@@ -361,7 +361,7 @@ pprEdgeWeights m =
ppr weight <> text "\"];\n"
--for the case that there are no edges from/to this node.
--This should rarely happen but it can save a lot of time
- --to immediatly see it when it does.
+ --to immediately see it when it does.
printNode node
= text "\t" <> ppr node <> text ";\n"
getEdgeNodes (from, to, _weight) = [from,to]