diff options
-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 |