From: panne Date: Wed, 19 Apr 2000 09:59:55 +0000 (+0000) Subject: [project @ 2000-04-19 09:59:55 by panne] X-Git-Tag: Approximately_9120_patches~4654 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=66e87ae1ac00d54df5024033fda5d08db99177a4;p=ghc-hetmet.git [project @ 2000-04-19 09:59:55 by panne] Corrected typo in nfib example (/ => `div`). Added description for hp2ps's -c/-y flags. --- diff --git a/ghc/docs/users_guide/profiling.sgml b/ghc/docs/users_guide/profiling.sgml index 49f31c2..30175ae 100644 --- a/ghc/docs/users_guide/profiling.sgml +++ b/ghc/docs/users_guide/profiling.sgml @@ -131,7 +131,7 @@ MAIN MAIN 0 0.0 0.0 0 1 main = print (f 25 + g 25) f n = nfib n -g n = nfib (n/2) +g n = nfib (n `div` 2) nfib n = if n < 2 then 1 else nfib (n-1) + nfib (n-2) @@ -757,6 +757,20 @@ hp2ps [flags] [<file>[.hp]] + + + Generate colour output. + + + + + + + Ignore marks. + + + + Print out usage information.