From 214794db67f756206eed93d7ec6f944823f66392 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Sun, 19 Jul 2015 09:10:42 -0700 Subject: [PATCH] Fix a tiny typo. --- doc/site/fibers.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/site/fibers.markdown b/doc/site/fibers.markdown index ba543e5a..a22f18de 100644 --- a/doc/site/fibers.markdown +++ b/doc/site/fibers.markdown @@ -113,7 +113,7 @@ of the `yield()` call: This prints "sent". Note that the first value sent to the fiber through call is ignored. That's because the fiber isn't waiting on a `yield()` call, so there's -no where for the sent value to go. +nowhere for the sent value to go. Fibers can also pass values *back* when they yield. If you pass an argument to `yield()`, that will become the return value of the `call` that was used to