diff --git a/source/Tutorials/Beginner-Client-Libraries/Custom-ROS2-Interfaces.rst b/source/Tutorials/Beginner-Client-Libraries/Custom-ROS2-Interfaces.rst index 730d573130..9b03921667 100644 --- a/source/Tutorials/Beginner-Client-Libraries/Custom-ROS2-Interfaces.rst +++ b/source/Tutorials/Beginner-Client-Libraries/Custom-ROS2-Interfaces.rst @@ -397,7 +397,7 @@ Since you'll be changing the standard string msg to a numerical one, the output self.subscription def listener_callback(self, msg): - self.get_logger().info('I heard: "%d"' % msg.num) # CHANGE + self.get_logger().info('I heard: "%d"' % msg.num) # CHANGE def main(args=None):