diff options
author | andy@unsafeperformio.com <unknown> | 2007-10-25 04:54:56 +0000 |
---|---|---|
committer | andy@unsafeperformio.com <unknown> | 2007-10-25 04:54:56 +0000 |
commit | 46935808127fe8d7a66bd52f884d2b50d3e33f6d (patch) | |
tree | 2f8d2e49e37c823bba523baa952b370f208f6345 /utils/hpc | |
parent | eb2f62135747109b66e5b09cf11a73deb1c61150 (diff) | |
download | haskell-46935808127fe8d7a66bd52f884d2b50d3e33f6d.tar.gz |
Fixing typo in runtime documentation for hpc, push to stable
Diffstat (limited to 'utils/hpc')
-rw-r--r-- | utils/hpc/HpcCombine.hs | 2 | ||||
-rw-r--r-- | utils/hpc/HpcFlags.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/hpc/HpcCombine.hs b/utils/hpc/HpcCombine.hs index f64dd674cc..b44b79d519 100644 --- a/utils/hpc/HpcCombine.hs +++ b/utils/hpc/HpcCombine.hs @@ -57,7 +57,7 @@ map_options . unionModuleOpt map_plugin = Plugin { name = "map" - , usage = "[OPTION] .. <TIX_FILE> [<TIX_FILE> [<TIX_FILE> ..]]" + , usage = "[OPTION] .. <TIX_FILE> " , options = map_options , summary = "Map a function over a single .tix file" , implementation = map_main diff --git a/utils/hpc/HpcFlags.hs b/utils/hpc/HpcFlags.hs index 761163f2dc..b445367023 100644 --- a/utils/hpc/HpcFlags.hs +++ b/utils/hpc/HpcFlags.hs @@ -217,7 +217,7 @@ thePostFun INV n = 0 thePostFun ZERO x = 0 postFuns = [ (show pos,pos) - | pos <- [INV .. ZERO] + | pos <- [ID .. ZERO] ] |