diff options
Diffstat (limited to 'libraries/base/GHC/IO/Device.hs')
-rw-r--r-- | libraries/base/GHC/IO/Device.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/GHC/IO/Device.hs b/libraries/base/GHC/IO/Device.hs index 1f6304b5d9..e33dcd02b1 100644 --- a/libraries/base/GHC/IO/Device.hs +++ b/libraries/base/GHC/IO/Device.hs @@ -56,7 +56,7 @@ class RawIO a where writeNonBlocking :: a -> Ptr Word8 -> Int -> IO Int --- | I/O operations required for implementing a 'Handle'. +-- | I/O operations required for implementing a 'System.IO.Handle'. class IODevice a where -- | @ready dev write msecs@ returns 'True' if the device has data -- to read (if @write@ is 'False') or space to write new data (if @@ -160,7 +160,7 @@ data IODeviceType -- ----------------------------------------------------------------------------- -- SeekMode type --- | A mode that determines the effect of 'hSeek' @hdl mode i@. +-- | A mode that determines the effect of 'System.IO.hSeek' @hdl mode i@. data SeekMode = AbsoluteSeek -- ^ the position of @hdl@ is set to @i@. | RelativeSeek -- ^ the position of @hdl@ is set to offset @i@ |