diff --git a/documentation/coffee/array_comprehensions.coffee b/documentation/coffee/array_comprehensions.coffee index a04ab395..c272944e 100644 --- a/documentation/coffee/array_comprehensions.coffee +++ b/documentation/coffee/array_comprehensions.coffee @@ -1,5 +1,5 @@ # Eat lunch. -lunch: food.eat() for food in ['toast', 'cheese', 'wine'] +lunch: this.eat(food) for food in ['toast', 'cheese', 'wine'] # Zebra-stripe a table. highlight(row) for row, i in table when i % 2 is 0 \ No newline at end of file