summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHÃ¥vard Pettersen <3535158+havardpe@users.noreply.github.com>2022-10-13 11:42:04 +0200
committerGitHub <noreply@github.com>2022-10-13 11:42:04 +0200
commit03892b4b7a5857471301aa40865c9767945fbd1a (patch)
tree30d68d27825b133a5c27abc3ad2a6413ed6c20c3 /vespalib
parenta4d00a65e72428b5e1f86cc8f8b9ec16d1d37074 (diff)
Apply suggestions from code review
typos Co-authored-by: Tor Brede Vekterli <vekterli@yahooinc.com>
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/coro/lazy.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vespalib/src/vespa/vespalib/coro/lazy.h b/vespalib/src/vespa/vespalib/coro/lazy.h
index cd479850a59..38a57108f04 100644
--- a/vespalib/src/vespa/vespalib/coro/lazy.h
+++ b/vespalib/src/vespa/vespalib/coro/lazy.h
@@ -14,11 +14,11 @@ namespace vespalib::coro {
* coroutine return type
*
* The coroutine is lazy (will suspend in initial_suspend) and
- * destroyed form the outside (will suspend in final_suspend). Waiting
+ * destroyed from the outside (will suspend in final_suspend). Waiting
* for a Lazy<T> using co_await will use symmetric transfer to suspend
- * the waiting coroutine and resuming this one. The waiting coroutine
+ * the waiting coroutine and resume this one. The waiting coroutine
* is registered as a continuation and will be resumed again once the
- * result is avalable (also using symmetric transfer). The result is
+ * result is available (also using symmetric transfer). The result is
* assumed to be produced asynchronously. If you need to access it
* from the outside (in that specific thread); use sync_wait.
**/