Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shamlian committed Jan 24, 2024
1 parent acaca4a commit f7123cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/tutorial/14_hello_robots.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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

0 comments on commit f7123cc

Please sign in to comment.