[project @ 2000-07-06 17:22:40 by keithw]
authorkeithw <unknown>
Thu, 6 Jul 2000 17:22:40 +0000 (17:22 +0000)
committerkeithw <unknown>
Thu, 6 Jul 2000 17:22:40 +0000 (17:22 +0000)
Fix obvious typo (pprStgARg for pprStgArg).  Clearly not a frequently-
tickled part of the compiler!

ghc/compiler/stgSyn/StgSyn.lhs

index 0b429a0..fabedee 100644 (file)
@@ -607,7 +607,7 @@ pprStgArg :: (Outputable bdee) => GenStgArg bdee -> SDoc
 
 pprStgArg (StgVarArg var) = ppr var
 pprStgArg (StgLitArg con) = ppr con
-pprStgARg (StgTypeArg ty) = char '@' <+> ppr ty
+pprStgArg (StgTypeArg ty) = char '@' <+> ppr ty
 \end{code}
 
 \begin{code}