From f7123cc4892d16e4e05888e00b01f8d9a1f89599 Mon Sep 17 00:00:00 2001 From: Steven Shamlian Date: Wed, 24 Jan 2024 11:33:06 -0500 Subject: [PATCH] fix typo --- examples/tutorial/14_hello_robots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!