From 7b5b2617433987cc2436c2204a586f036b7acd5c Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 28 Dec 2009 20:05:14 -0500 Subject: [PATCH] removed unused example --- documentation/coffee/array_comprehensions.coffee | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/documentation/coffee/array_comprehensions.coffee b/documentation/coffee/array_comprehensions.coffee index fb4934bf..ddda9319 100644 --- a/documentation/coffee/array_comprehensions.coffee +++ b/documentation/coffee/array_comprehensions.coffee @@ -2,7 +2,4 @@ lunch: food.eat() for food in ['toast', 'cheese', 'wine']. # Zebra-stripe a table. -highlight(row) for row, i in table if i % 2 is 0. - -# Check the first one hundred combinations. -lockpick(combinations[i]) for i in [1..100]. \ No newline at end of file +highlight(row) for row, i in table if i % 2 is 0. \ No newline at end of file