diff options
author | Ian Lynagh <ian@well-typed.com> | 2012-10-25 20:54:41 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2012-10-25 20:54:41 +0100 |
commit | e0c77c9f0729c105dddc5ce3fc79e117951719ba (patch) | |
tree | 1259b52556bf637e91c17087babfa84cea88ea23 /docs | |
parent | 93d45391dc9b5dcc53d8b34c914a033d3362ccef (diff) | |
download | haskell-e0c77c9f0729c105dddc5ce3fc79e117951719ba.tar.gz |
Fix doc typo; fixes #7318
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/glasgow_exts.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/glasgow_exts.xml b/docs/users_guide/glasgow_exts.xml index 541b309684..7607aa7ee4 100644 --- a/docs/users_guide/glasgow_exts.xml +++ b/docs/users_guide/glasgow_exts.xml @@ -9516,7 +9516,7 @@ Sometimes, however, this approach is over-cautious, and we <emphasis>do</emphasi rule to fire, even though doing so would duplicate redex. There is no way that GHC can work out when this is a good idea, so we provide the CONLIKE pragma to declare it, thus: <programlisting> -{-# INLINE[1] CONLIKE f #-} +{-# INLINE CONLIKE [1] f #-} f x = <replaceable>blah</replaceable> </programlisting> CONLIKE is a modifier to an INLINE or NOINLINE pragma. It specifies that an application |