diff options
author | Simon Marlow <marlowsd@gmail.com> | 2011-01-06 09:31:52 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2011-01-06 09:31:52 +0000 |
commit | ab769387cb04ae551642c5b30622a710eaab93f0 (patch) | |
tree | fa301c81a5976b3cf197874f59c7759f8d8b2352 | |
parent | a852f1dd288c5a34b36a7f8bc21f4a338a19355c (diff) | |
download | haskell-ab769387cb04ae551642c5b30622a710eaab93f0.tar.gz |
fix markup
-rw-r--r-- | docs/users_guide/ghci.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/users_guide/ghci.xml b/docs/users_guide/ghci.xml index ebf195b2a6..a675cca885 100644 --- a/docs/users_guide/ghci.xml +++ b/docs/users_guide/ghci.xml @@ -81,11 +81,11 @@ Prelude> as in the above example.</para> <para>Multiline mode is useful when entering monadic - <literal>do<literal> statements:</para> + <literal>do</literal> statements:</para> <screen> Control.Monad.State> flip evalStateT 0 $ do -Control.Monad.State| i <- get +Control.Monad.State| i <- get Control.Monad.State| lift $ do Control.Monad.State| putStrLn "Hello World!" Control.Monad.State| print i |