diff options
author | panne <unknown> | 2004-09-11 18:17:04 +0000 |
---|---|---|
committer | panne <unknown> | 2004-09-11 18:17:04 +0000 |
commit | aa84783676adedfbfe2d93dc99c69dc6a1b1ca46 (patch) | |
tree | c5b036ea5805ecfe8b49a1dc57f9713ec99aff02 | |
parent | b2746a8e187a98e251461115e8eaea69196753fc (diff) | |
download | haskell-aa84783676adedfbfe2d93dc99c69dc6a1b1ca46.tar.gz |
[project @ 2004-09-11 18:17:04 by panne]
NOINLINE is mentioned in the H98 report, not NOTINLINE.
MERGE TO STABLE.
-rw-r--r-- | ghc/docs/users_guide/glasgow_exts.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/docs/users_guide/glasgow_exts.xml b/ghc/docs/users_guide/glasgow_exts.xml index 5a22e7c6ad..241245143d 100644 --- a/ghc/docs/users_guide/glasgow_exts.xml +++ b/ghc/docs/users_guide/glasgow_exts.xml @@ -4186,7 +4186,7 @@ key_function :: Int -> String -> (Bool, Double) you're very cautious about code size.</para> <para><literal>NOTINLINE</literal> is a synonym for - <literal>NOINLINE</literal> (<literal>NOTINLINE</literal> is + <literal>NOINLINE</literal> (<literal>NOINLINE</literal> is specified by Haskell 98 as the standard way to disable inlining, so it should be used if you want your code to be portable).</para> |