diff options
author | Reid Barton <rwbarton@gmail.com> | 2015-06-02 16:00:10 -0400 |
---|---|---|
committer | Reid Barton <rwbarton@gmail.com> | 2015-06-02 16:00:10 -0400 |
commit | 5688053a5c0a188c8bc94cd2c41d178b5c716535 (patch) | |
tree | fb042971a9ceb92a3df84c31c25edd34e6a6b133 /docs | |
parent | 3758050f02c1de6af41c50ed122b3df012d400ff (diff) | |
download | haskell-5688053a5c0a188c8bc94cd2c41d178b5c716535.tar.gz |
Detabify a programlisting in the User's Guide (#10425)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/bugs.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/bugs.xml b/docs/users_guide/bugs.xml index 1e948e63cc..cb327757ed 100644 --- a/docs/users_guide/bugs.xml +++ b/docs/users_guide/bugs.xml @@ -71,7 +71,7 @@ <programlisting> main = do args <- getArgs - if null args then return [] else do + if null args then return [] else do ps <- mapM process args mapM print ps</programlisting> |