summaryrefslogtreecommitdiff
path: root/libraries/base/Foreign/Marshal/Utils.hs
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/base/Foreign/Marshal/Utils.hs')
-rw-r--r--libraries/base/Foreign/Marshal/Utils.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Foreign/Marshal/Utils.hs b/libraries/base/Foreign/Marshal/Utils.hs
index c24c249a8d..6f2434610c 100644
--- a/libraries/base/Foreign/Marshal/Utils.hs
+++ b/libraries/base/Foreign/Marshal/Utils.hs
@@ -171,7 +171,7 @@ moveBytes dest src size = do _ <- memmove dest src (fromIntegral size)
-- |Fill a given number of bytes in memory area with a byte value.
--
--- /Since: 4.8.0.0/
+-- @since 4.8.0.0
fillBytes :: Ptr a -> Word8 -> Int -> IO ()
fillBytes dest char size = do
_ <- memset dest (fromIntegral char) (fromIntegral size)