typo in comment
authorSimon Marlow <marlowsd@gmail.com>
Wed, 26 Aug 2009 08:52:52 +0000 (08:52 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Wed, 26 Aug 2009 08:52:52 +0000 (08:52 +0000)
GHC/IO/Device.hs

index 5e40c61..67ea242 100644 (file)
@@ -84,7 +84,7 @@ class IODevice a where
   isSeekable :: a -> IO Bool
   isSeekable _ = return False
 
-  -- | seek to the specified positing in the data.
+  -- | seek to the specified position in the data.
   seek :: a -> SeekMode -> Integer -> IO ()
   seek _ _ _ = ioe_unsupportedOperation