diff --git a/source/Tutorials/Intermediate/URDF/Using-URDF-with-Robot-State-Publisher.rst b/source/Tutorials/Intermediate/URDF/Using-URDF-with-Robot-State-Publisher.rst index bef5d9bb47..79d2995ba8 100644 --- a/source/Tutorials/Intermediate/URDF/Using-URDF-with-Robot-State-Publisher.rst +++ b/source/Tutorials/Intermediate/URDF/Using-URDF-with-Robot-State-Publisher.rst @@ -42,9 +42,9 @@ Tasks .. code-block:: console - mkdir -p ~/second_ros2_ws/src # change as needed + mkdir -p ~/second_ros2_ws/src cd ~/second_ros2_ws/src - ros2 pkg create urdf_tutorial_r2d2 --build-type ament_python --dependencies rclpy + ros2 pkg create urdf_tutorial_r2d2 --build-type ament_python --dependencies rclpy --license Apache-2.0 cd urdf_tutorial_r2d2 You should now see a ``urdf_tutorial_r2d2`` folder. @@ -229,7 +229,7 @@ Edit the ``~/second_ros2_ws/src/urdf_tutorial_r2d2/setup.py`` file as follows: data_files=[ ... (os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*launch.[pxy][yma]*'))), - (os.path.join('share', package_name), glob('urdf/*')) + (os.path.join('share', package_name), glob('urdf/*')), ], - modify the ``entry_points`` table so you can later run 'state_publisher' from a console @@ -272,8 +272,8 @@ See the `User Guide `__ for details on how t Summary ------- -You created a JointState publisher node and coupled it with ``robot_state_publisher`` to simulate a walking robot. -The code used in these examples can be found `here `__. +You created a ``JointState`` publisher node and coupled it with ``robot_state_publisher`` to simulate a walking robot. +The code used in these examples is originally from `here `__. Credit is given to the authors of this `ROS 1 tutorial `__