From 2d20f379272f8319ec90ac901ef44ef71eb3ba12 Mon Sep 17 00:00:00 2001 From: Jesus Eduardo Rodriguez <141784078+hello-jesus@users.noreply.github.com> Date: Fri, 25 Aug 2023 10:11:45 -0700 Subject: [PATCH] Fix typo in the titles Initialization and Subscribing --- ros2/intro_to_ros2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ros2/intro_to_ros2.md b/ros2/intro_to_ros2.md index 602fd34..8744667 100644 --- a/ros2/intro_to_ros2.md +++ b/ros2/intro_to_ros2.md @@ -11,7 +11,7 @@ python3 -m IPython Try out the following snippets for a ROS 2 quickstart: -## Initializationa and Shutdown +## Initialization and Shutdown ### rclpy.init() All rclpy functionality can be exposed after initialization: ```{.bash .shell-prompt} @@ -56,7 +56,7 @@ node.destroy_node() rclpy.shutdown() ``` -## Publishing and subscribing +## Publishing and Subscribing ### create_publisher() ROS 2 is a distributed communication system and one way to send data is through a publisher. It takes the following arguments: msg_type, msg_topic and a history depth (formerly queue_size): ```{.bash .shell-prompt}