diff options
author | Krzysztof Gogolewski <krz.gogolewski@gmail.com> | 2013-10-12 18:39:54 +0200 |
---|---|---|
committer | Krzysztof Gogolewski <krz.gogolewski@gmail.com> | 2013-10-12 18:39:54 +0200 |
commit | 77d2aa5fd4ab6e20f84f3725e7ae6a65fb18d5a1 (patch) | |
tree | 1a60967aa53716fd5abe203aebfaf44fe4efe72b /compiler/ghci | |
parent | c5262a12a2d3568cc00ffa47a686b3c8e015b2c5 (diff) | |
download | haskell-77d2aa5fd4ab6e20f84f3725e7ae6a65fb18d5a1.tar.gz |
Typos
Diffstat (limited to 'compiler/ghci')
-rw-r--r-- | compiler/ghci/RtClosureInspect.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghci/RtClosureInspect.hs b/compiler/ghci/RtClosureInspect.hs index 53fed7274c..be052945aa 100644 --- a/compiler/ghci/RtClosureInspect.hs +++ b/compiler/ghci/RtClosureInspect.hs @@ -412,7 +412,7 @@ type CustomTermPrinter m = TermPrinterM m -> [Precedence -> Term -> (m (Maybe SDoc))] -- | Takes a list of custom printers with a explicit recursion knot and a term, --- and returns the output of the first succesful printer, or the default printer +-- and returns the output of the first successful printer, or the default printer cPprTerm :: Monad m => CustomTermPrinter m -> Term -> m SDoc cPprTerm printers_ = go 0 where printers = printers_ go |