diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-11-21 09:43:00 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-11-21 09:43:00 +0000 |
commit | 740bbc4a299bb7a263ccbd1c7e3db4aa01b906d2 (patch) | |
tree | b46266d44b8a27232fc586a2e636a5ccaa961a8e /libraries/base/Debug | |
parent | 460f3686c7a9db2c3b581a13aad092bd47e28766 (diff) | |
download | haskell-740bbc4a299bb7a263ccbd1c7e3db4aa01b906d2.tar.gz |
oops, we forgot to export traceShow
Diffstat (limited to 'libraries/base/Debug')
-rw-r--r-- | libraries/base/Debug/Trace.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/base/Debug/Trace.hs b/libraries/base/Debug/Trace.hs index accf247e88..16a614e661 100644 --- a/libraries/base/Debug/Trace.hs +++ b/libraries/base/Debug/Trace.hs @@ -15,7 +15,8 @@ module Debug.Trace ( -- * Tracing putTraceMsg, -- :: String -> IO () - trace -- :: String -> a -> a + trace, -- :: String -> a -> a + traceShow ) where import Prelude |