aboutsummaryrefslogtreecommitdiffhomepage
path: root/System/Posix/Process
diff options
context:
space:
mode:
authorGravatar Herbert Valerio Riedel <hvr@gnu.org>2016-04-19 19:37:41 +0200
committerGravatar Herbert Valerio Riedel <hvr@gnu.org>2016-04-19 19:38:13 +0200
commitb7fa405365c43fc2d45e37385ffd0111a4008eed (patch)
treedda7e4c8eacbc6328110678c31e98f1871b53678 /System/Posix/Process
parent861ad256e0a5337a1a685b1cd50ae91ee9374cab (diff)
Convert /since/ to @since syntax
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)