Skip to content

Commit 342b476

Browse files
committed
- change spikey to spiky
1 parent ad457c7 commit 342b476

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chapter-04-conditional_statements/conditional_statements/conditional_statements.pyde

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# booleans
22
ball_is_red = True
3-
ball_is_spikey = False
3+
ball_is_spiky = False
44
print(ball_is_red) # displays: True
5-
print(ball_is_spikey) # displays: False
5+
print(ball_is_spiky) # displays: False
66
print(ball_is_red + True) # displays: 2
77
print(bool(1)) # displays: True
88
print(bool(0)) # displays: False

0 commit comments

Comments
 (0)