diff options
author | Ben Gamari <ben@smart-cactus.org> | 2016-07-07 19:42:46 +0200 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-07-08 15:06:23 +0200 |
commit | b8cd94d631ccccf7c94dda2eceb39650faf7d568 (patch) | |
tree | 33e5fbbcf147ab1f842877c2c40cc48fe16c4e41 /libraries | |
parent | 04813246f2279bbdb4dc3c268b98f097c62d098b (diff) | |
download | haskell-b8cd94d631ccccf7c94dda2eceb39650faf7d568.tar.gz |
GHC.Stack.CCS: Fix typo in Haddocks
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/base/GHC/Stack/CCS.hsc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/GHC/Stack/CCS.hsc b/libraries/base/GHC/Stack/CCS.hsc index bab9f7500b..51eb6244a4 100644 --- a/libraries/base/GHC/Stack/CCS.hsc +++ b/libraries/base/GHC/Stack/CCS.hsc @@ -82,7 +82,7 @@ ccSrcSpan p = (# peek CostCentre, srcloc) p -- | Returns a @[String]@ representing the current call stack. This -- can be useful for debugging. -- --- The implementation uses the call-stack simulation maintined by the +-- The implementation uses the call-stack simulation maintained by the -- profiler, so it only works if the program was compiled with @-prof@ -- and contains suitable SCC annotations (e.g. by using @-fprof-auto@). -- Otherwise, the list returned is likely to be empty or |