From 8e3994f42b25d500c74e39fe2359b49c7c6d5da2 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Tue, 18 Feb 2014 09:02:52 -0800 Subject: [PATCH] Fix typo. --- _posts/2013-02-24-iteration-inside-and-out-part-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2013-02-24-iteration-inside-and-out-part-2.md b/_posts/2013-02-24-iteration-inside-and-out-part-2.md index a8bb518..7fe24fa 100644 --- a/_posts/2013-02-24-iteration-inside-and-out-part-2.md +++ b/_posts/2013-02-24-iteration-inside-and-out-part-2.md @@ -298,7 +298,7 @@ Double-plus good! We've got nice support for both internal and external iterator 3. The next time you call `next` it picks up exactly where it left off. Somehow that entire callstack gets frozen and then thawed between each call to `next`. -There must be some kind of data structure that represents an entire callstack. It doesn't reify a strack *frame* like generators, it reifies the whole *stack.* +There must be some kind of data structure that represents an entire callstack. It doesn't reify a stack *frame* like generators, it reifies the whole *stack.* ## A fiber by any other name