summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2017-07-23 17:25:02 +0200
committerJosh Soref <jsoref@users.noreply.github.com>2017-07-23 17:25:02 +0200
commitb741973f95f80d6a52335a76cac8057252f3e91d (patch)
tree826ae38e8df44769d970b22e65ba38b003a94c43 /ext
parentspelling: artificially (diff)
downloadkea-b741973f95f80d6a52335a76cac8057252f3e91d.tar.xz
kea-b741973f95f80d6a52335a76cac8057252f3e91d.zip
spelling: asynchronous
Diffstat (limited to 'ext')
-rw-r--r--ext/coroutine/coroutine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/coroutine/coroutine.h b/ext/coroutine/coroutine.h
index 0f36c3f890..612b06b011 100644
--- a/ext/coroutine/coroutine.h
+++ b/ext/coroutine/coroutine.h
@@ -20,7 +20,7 @@
// a single int.
//
// A reentrant function contains a CORO_REENTER (coroutine) { ... }
-// block. Whenever an asychrnonous operation is initiated within the
+// block. Whenever an asynchronous operation is initiated within the
// routine, the function is provided as the handler object. (The simplest
// way to do this is to have the reentrant function be the operator()
// member for the coroutine object itself.) For example: