Skip to content

Commit 39c86c6

Browse files
authored
Merge pull request #430 from vaerksted/master
fix spelling errors
2 parents 14f5528 + 2cd1d9e commit 39c86c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

old-testsuite/microsuite/Test.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ left_over_vector = compile "Data\\.Vector\\.Unboxed\\.Base\\.Vector" []
177177
readProcess :: FilePath -- ^ command to run
178178
-> [String] -- ^ any arguments
179179
-> String -- ^ standard input
180-
-> IO (Either (ExitCode,String) String) -- ^ either the stdout, or an exitcode and any output
180+
-> IO (Either (ExitCode,String) String) -- ^ either the stdout, or an exit code and any output
181181

182182
readProcess cmd args input = C.handle (return . handler) $ do
183183
(inh,outh,errh,pid) <- runInteractiveProcess cmd args Nothing Nothing

vector/src/Data/Vector/Storable/Mutable.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ storableSetAsPrim
233233
{-# INLINE [0] storableSetAsPrim #-}
234234
storableSetAsPrim n fp x _y = unsafeWithForeignPtr fp $ \ ptr -> do
235235
poke ptr x
236-
-- we dont equate storable and prim reps, so we need to write to a slot
236+
-- we don't equate storable and prim reps, so we need to write to a slot
237237
-- in storable
238238
-- then read it back as a prim
239239
w<- peakPrimPtr_vector (castPtr ptr :: Ptr b) 0

0 commit comments

Comments
 (0)