Fix example in README.

This commit is contained in:
Bob Nystrom
2015-07-20 07:34:30 -07:00
parent bc822cd4c7
commit ed8ec262e4

View File

@ -12,7 +12,7 @@ class Wren {
}
}
var adjectives = new Fiber {
var adjectives = Fiber.new {
["small", "clean", "fast"].each {|word| Fiber.yield(word) }
}