aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/Process
diff options
context:
space:
mode:
Diffstat (limited to 'System/Posix/Process')
-rw-r--r--System/Posix/Process/Common.hsc2
-rw-r--r--System/Posix/Process/Internals.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/System/Posix/Process/Common.hsc b/System/Posix/Process/Common.hsc
index 59212e4..7fb0823 100644
--- a/System/Posix/Process/Common.hsc
+++ b/System/Posix/Process/Common.hsc
@@ -301,7 +301,7 @@ foreign import ccall "forkProcess" forkProcessPrim :: StablePtr (IO ()) -> IO CP
-- | Variant of 'forkProcess' in the style of 'forkIOWithUnmask'.
--
--- /Since: 2.7.0.0/
+-- @since 2.7.0.0
forkProcessWithUnmask :: ((forall a . IO a -> IO a) -> IO ()) -> IO ProcessID
forkProcessWithUnmask action = forkProcess (action unsafeUnmask)
diff --git a/System/Posix/Process/Internals.hs b/System/Posix/Process/Internals.hs
index 0bd99ae..ddafa10 100644
--- a/System/Posix/Process/Internals.hs
+++ b/System/Posix/Process/Internals.hs
@@ -19,7 +19,7 @@ data ProcessStatus
-- signal, the @Bool@ is @True@ if a core
-- dump was produced
--
- -- /Since: 2.7.0.0/
+ -- @since 2.7.0.0
| Stopped Signal -- ^ the process was stopped by a signal
deriving (Eq, Ord, Show)