diff options
author | Gabor Greif <ggreif@gmail.com> | 2019-01-22 12:07:47 +0100 |
---|---|---|
committer | Ben Gamari <ben@well-typed.com> | 2019-01-23 14:07:28 -0500 |
commit | bb2acfe0ec4c196a87218709ee28327845d62dc4 (patch) | |
tree | 5b7c314caa4944997e7faa51ba3fd9c5328fc913 /rts | |
parent | c9a02dfc32ea4304c1c0d02bd8091fd5d045741f (diff) | |
download | haskell-bb2acfe0ec4c196a87218709ee28327845d62dc4.tar.gz |
A few typofixes
Diffstat (limited to 'rts')
-rw-r--r-- | rts/posix/Signals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/posix/Signals.c b/rts/posix/Signals.c index f033870d16..f8bd9fb829 100644 --- a/rts/posix/Signals.c +++ b/rts/posix/Signals.c @@ -164,7 +164,7 @@ ioManagerWakeup (void) r = write(io_manager_wakeup_fd, &byte, 1); #endif /* N.B. If the TimerManager is shutting down as we run this - * then there is a possiblity that our first read of + * then there is a possibility that our first read of * io_manager_wakeup_fd is non-negative, but before we get to the * write the file is closed. If this occurs, io_manager_wakeup_fd * will be written into with -1 (GHC.Event.Control does this prior |