odd and even were backwards

This commit is contained in:
Jeremy Ashkenas 2010-01-25 22:44:36 -05:00
parent 8efcaf6eec
commit 63b44a2b03
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@ square: x => x * x
sum: x, y => x + y
odd: x => x % 2 is 0
odd: x => x % 2 isnt 0
even: x => x % 2 isnt 0
even: x => x % 2 is 0
run_loop: =>
fire_events(e => e.stopPropagation())