summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-05-14 06:41:04 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-05-14 06:41:04 -0700
commit60b8b850405c201533ea591eb620fc6abb85b9a5 (patch)
treed2a088780492a11e7921eac61e6dc0d9692e5ec5 /src/Text/Pandoc
parentd8e44029284ab65e93b29aa04c7dcf218156371e (diff)
parent113a32daa8a628a1f6f166c6b43d07ac005b8d42 (diff)
Merge pull request #1293 from tarleb/typo
Process: Fix minor typo in pipeProcess' docs
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Process.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Process.hs b/src/Text/Pandoc/Process.hs
index 9c8853366..19872b405 100644
--- a/src/Text/Pandoc/Process.hs
+++ b/src/Text/Pandoc/Process.hs
@@ -47,7 +47,7 @@ terminates, and then returns the 'ExitCode' of the process,
the standard output, and the standard error.
If an asynchronous exception is thrown to the thread executing
-@readProcessWithExitCode@. The forked process will be terminated and
+@readProcessWithExitCode@, the forked process will be terminated and
@readProcessWithExitCode@ will wait (block) until the process has been
terminated.
-}
@@ -102,4 +102,3 @@ forkWait a = do
res <- newEmptyMVar
_ <- mask $ \restore -> forkIO $ try (restore a) >>= putMVar res
return (takeMVar res >>= either (\ex -> throwIO (ex :: SomeException)) return)
-