1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

tweak to block indentation test.

This commit is contained in:
Jeremy Ashkenas 2010-09-18 13:20:32 -04:00
parent 4b2d40d3b5
commit 72847b9b26

View file

@ -27,8 +27,8 @@ ok results.join(' ') is '3 2 1'
# Make incorrect indentation safe.
func = ->
obj = {
key: 10
}
key: 10
}
obj.key - 5
ok func() is 5