diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-01-12 15:10:48 +0100 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-01-13 18:13:44 +0100 |
commit | d3ad013526b2f42b4e93ee294883e93ae988b7d8 (patch) | |
tree | 7a62b48ce6bc10742da4ef385103176b523319b1 /libraries/base/Foreign | |
parent | 6b976eb89fe72827f226506d16d3721ba4e28bab (diff) | |
download | haskell-d3ad013526b2f42b4e93ee294883e93ae988b7d8.tar.gz |
Typos in comments
Diffstat (limited to 'libraries/base/Foreign')
-rw-r--r-- | libraries/base/Foreign/Marshal/Alloc.hs | 2 | ||||
-rw-r--r-- | libraries/base/Foreign/Marshal/Utils.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/Foreign/Marshal/Alloc.hs b/libraries/base/Foreign/Marshal/Alloc.hs index 264c10c939..2a3c756035 100644 --- a/libraries/base/Foreign/Marshal/Alloc.hs +++ b/libraries/base/Foreign/Marshal/Alloc.hs @@ -198,7 +198,7 @@ free :: Ptr a -> IO () free = _free --- auxilliary routines +-- auxiliary routines -- ------------------- -- asserts that the pointer returned from the action in the second argument is diff --git a/libraries/base/Foreign/Marshal/Utils.hs b/libraries/base/Foreign/Marshal/Utils.hs index 6f2434610c..30e80035fa 100644 --- a/libraries/base/Foreign/Marshal/Utils.hs +++ b/libraries/base/Foreign/Marshal/Utils.hs @@ -177,7 +177,7 @@ fillBytes dest char size = do _ <- memset dest (fromIntegral char) (fromIntegral size) return () --- auxilliary routines +-- auxiliary routines -- ------------------- -- |Basic C routines needed for memory copying |