summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-03-01 13:03:39 +0000
committerIan Lynagh <igloo@earth.li>2007-03-01 13:03:39 +0000
commitb511a8e82047c37834d2d4e116199511eb6fd70b (patch)
tree484a6afa65d0f77633bf56b4c5e7ae17a8a2b915
parent2d52ee06786e5caf0c2d65a4b4bb7c45c6493190 (diff)
downloadhaskell-b511a8e82047c37834d2d4e116199511eb6fd70b.tar.gz
Fix typo in primops docs
-rw-r--r--compiler/prelude/primops.txt.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/prelude/primops.txt.pp b/compiler/prelude/primops.txt.pp
index 6e0a13dafd..10bcf37c10 100644
--- a/compiler/prelude/primops.txt.pp
+++ b/compiler/prelude/primops.txt.pp
@@ -1756,11 +1756,11 @@ pseudoop "seq"
pseudoop "inline"
a -> a
- { The call {\tt(inline f)} arranges that f is inlined, regardless of its size.
- More precisely, the call {\tt(inline f)} rewrites to the right-hand side of
+ { The call {\tt (inline f)} arranges that f is inlined, regardless of its size.
+ More precisely, the call {\tt (inline f)} rewrites to the right-hand side of
{\tt f}'s definition. This allows the programmer to control inlining from a
particular call site rather than the definition site of the function (c.f.
- {\ttINLINE} pragmas in User's Guide, Section 7.10.3, "INLINE and NOINLINE
+ {\tt INLINE} pragmas in User's Guide, Section 7.10.3, "INLINE and NOINLINE
pragmas").
This inlining occurs regardless of the argument to the call or the size of