removing dots from whitespace examples

This commit is contained in:
Jeremy Ashkenas
2009-12-30 00:22:27 -05:00
parent 90051e9096
commit 6ddd808f74
13 changed files with 31 additions and 30 deletions

View File

@@ -1,5 +1,5 @@
# Eat lunch.
lunch: food.eat() for food in ['toast', 'cheese', 'wine'].
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.
highlight(row) for row, i in table when i % 2 is 0