diff --git a/examples/tutorial/14_hello_robots.py b/examples/tutorial/14_hello_robots.py index 26e90fe..dbb92fa 100644 --- a/examples/tutorial/14_hello_robots.py +++ b/examples/tutorial/14_hello_robots.py @@ -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!