Skip to content
Snippets Groups Projects
Unverified Commit 02c4c1ca authored by Niklas Hambüchen's avatar Niklas Hambüchen Committed by GitHub
Browse files

POSIX: Fix haddock links

You can't link to `System.Posix.EpochTime` since that module isn't imported, haddock will link it into nirvana.

`Foreign.C.CTime` didn't work because that just leads to e.g.
  http://hackage.haskell.org/package/base-4.11.1.0/docs/Foreign-C.html#v:CTime
which doesn't contain the function.
parent 9e96c261
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,6 @@ posixDayLength = nominalDay ...@@ -9,6 +9,6 @@ posixDayLength = nominalDay
-- | POSIX time is the nominal time since 1970-01-01 00:00 UTC -- | POSIX time is the nominal time since 1970-01-01 00:00 UTC
-- --
-- To convert from a 'Foreign.C.CTime' or 'System.Posix.EpochTime', use 'realToFrac'. -- To convert from a 'Foreign.C.Types.CTime' or @System.Posix.EpochTime@, use 'realToFrac'.
-- --
type POSIXTime = NominalDiffTime type POSIXTime = NominalDiffTime
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment