From 72f3710df6ac24bcad82b3f7fd158aa8c14ee86f Mon Sep 17 00:00:00 2001 From: panne Date: Sat, 14 Sep 2002 09:27:21 +0000 Subject: [PATCH] [project @ 2002-09-14 09:27:21 by panne] Make Haddock happy --- GHC/IOBase.lhs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GHC/IOBase.lhs b/GHC/IOBase.lhs index 60ae45b..6f7d9c9 100644 --- a/GHC/IOBase.lhs +++ b/GHC/IOBase.lhs @@ -133,9 +133,10 @@ performs side effects, then the relative order in which those side effects take place (relative to the main I\/O trunk, or other calls to 'unsafePerformIO') is indeterminate. You have to be careful when writing and compiling modules that use 'unsafePerformIO': - * Use @{-# NOINLINE foo #-}@ as a pragma on any function @foo@ + + * Use @{\-\# NOINLINE foo \#-\}@ as a pragma on any function @foo@ that calls 'unsafePerformIO'. If the call is inlined, - the I/O may be performed more than once. + the I\/O may be performed more than once. * Use the compiler flag @-fno-cse@ to prevent common sub-expression elimination being performed on the module, which might combine -- 1.7.10.4