Skip to content

Commit f7123cc

Browse files
committed
fix typo
1 parent acaca4a commit f7123cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: examples/tutorial/14_hello_robots.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# Functions decorated with @event triggered by events.
1818
# A robot.when_play event is triggered when the robot.play() method is called.
19-
# It is important that an event function, is declated as async.
19+
# It is important that event functions are declated as async.
2020
@event(robot.when_play)
2121
async def play(robot): # The name of the function can be any valid Python function name.
2222
print('play!') # Put your code here!

0 commit comments

Comments
 (0)