summaryrefslogtreecommitdiff
path: root/rts/StablePtr.c
diff options
context:
space:
mode:
authorBrian Wignall <brianwignall@gmail.com>2019-11-08 16:21:03 -0500
committerBrian Wignall <brianwignall@gmail.com>2019-11-23 19:04:52 -0500
commit7b4c7b75be351e9b6a40093cbccab728dd89064f (patch)
tree01126ac3823a1f1b197ac1865d7bc628eb4676a5 /rts/StablePtr.c
parentc14b723f7fa24b4db0b561f9ab0d6e0f4261fd2f (diff)
downloadhaskell-7b4c7b75be351e9b6a40093cbccab728dd89064f.tar.gz
Fix typos
Diffstat (limited to 'rts/StablePtr.c')
-rw-r--r--rts/StablePtr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/StablePtr.c b/rts/StablePtr.c
index 2181b83d90..edcd863183 100644
--- a/rts/StablePtr.c
+++ b/rts/StablePtr.c
@@ -32,7 +32,7 @@
for garbage collection because the act of passing them makes a copy
from the heap, stack or wherever they are onto the C-world stack.
However, if we were to pass a heap object such as a (Haskell) @String@
- and a garbage collection occured before we finished using it, we'd run
+ and a garbage collection occurred before we finished using it, we'd run
into problems since the heap object might have been moved or even
deleted.