summaryrefslogtreecommitdiff
path: root/doc/design/assistant/blog/day_12__freebsd_redux.mdwn
diff options
context:
space:
mode:
authorGravatar Richard Hartmann <richih.mailinglist@gmail.com>2012-07-08 20:53:50 +0200
committerGravatar Joey Hess <joey@kitenet.net>2012-07-08 13:04:35 -0600
commit619297e1a7ba89f50fa5be9d7dfdfe5a9510129a (patch)
tree425a9931a9caa211ae24f9d8c05976757c2203a6 /doc/design/assistant/blog/day_12__freebsd_redux.mdwn
parentb64a489a07f5e5be5b722ec3b942f505756ce853 (diff)
Fix typos on blog
Diffstat (limited to 'doc/design/assistant/blog/day_12__freebsd_redux.mdwn')
-rw-r--r--doc/design/assistant/blog/day_12__freebsd_redux.mdwn4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/design/assistant/blog/day_12__freebsd_redux.mdwn b/doc/design/assistant/blog/day_12__freebsd_redux.mdwn
index ba397788a..5ec446c9d 100644
--- a/doc/design/assistant/blog/day_12__freebsd_redux.mdwn
+++ b/doc/design/assistant/blog/day_12__freebsd_redux.mdwn
@@ -3,13 +3,13 @@ to `kqueue`, and Haskell code to use that library. By now I think I
understand kqueue fairly well -- there are some very tricky parts to the
interface.
-But... it still did't work. After building all this, my code was
+But... it still didn't work. After building all this, my code was
failing the same way that the
[haskell kqueue library failed](https://github.com/hesselink/kqueue/issues/1)
yesterday. I filed a [bug report with a testcase]().
Then I thought to ask on #haskell. Got sorted out in quick order! The
-problem turns out to be that haskell's runtime has a peridic SIGALARM,
+problem turns out to be that haskell's runtime has a periodic SIGALARM,
that is interrupting my kevent call. It can be worked around with `+RTS -V0`,
but I put in a fix to retry to kevent when it's interrupted.