Skip to content

Commit 9c1f5e1

Browse files
mergify[bot]fujitatomoyaahcorde
authored
address mistyping detected by codespell checker. (backport #4980) (#4982)
* address mistyping detected by codespell checker. (#4980) Signed-off-by: Tomoya Fujita <Tomoya.Fujita@sony.com> (cherry picked from commit 49f66fd) Signed-off-by: Alejandro Hernandez Cordero <ahcorde@gmail.com> Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com> Co-authored-by: Alejandro Hernandez Cordero <ahcorde@gmail.com>
1 parent 9f4a25f commit 9c1f5e1

29 files changed

+38
-38
lines changed

source/Concepts/Basic/About-Interfaces.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ For example:
207207
Constants
208208
^^^^^^^^^
209209

210-
Each constant definition is like a field description with a default value, except that this value can never be changed programatically.
210+
Each constant definition is like a field description with a default value, except that this value can never be changed programmatically.
211211
This value assignment is indicated by use of an equal '=' sign, e.g.
212212

213213
.. code-block:: bash

source/Concepts/Basic/About-Topics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Publish/Subscribe
1414
-----------------
1515

1616
A publish/subscribe system is one in which there are producers of data (publishers) and consumers of data (subscribers).
17-
The publishers and subscribers know how to contact each other through the concept of a "topic", which is a common name so that the entites can find each other.
17+
The publishers and subscribers know how to contact each other through the concept of a "topic", which is a common name so that the entities can find each other.
1818
For instance, when you create a publisher, you must also give it a string that is the name of the topic; the same goes for the subscriber.
1919
Any publishers and subscribers that are on the same topic name can directly communicate with each other.
2020
There may be zero or more publishers and zero or more subscribers on any particular topic.

source/Concepts/Intermediate/About-RQt.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RQt Components Structure
5656

5757
RQt consists of two metapackages:
5858

59-
* *rqt* - core infrastucture modules.
59+
* *rqt* - core infrastructure modules.
6060
* *rqt_common_plugins* - Commonly useful debugging tools.
6161

6262
Advantage of RQt framework
@@ -72,7 +72,7 @@ Compared to building your own GUIs from scratch:
7272
From system architecture's perspective:
7373

7474
* Support multi-platform (basically wherever `QT <http://qt-project.org/>`__ and ROS run) and multi-language (``Python``, ``C++``).
75-
* Manageable lifecycle: RQt plugins using a common API makes maintainance & reuse easier.
75+
* Manageable lifecycle: RQt plugins using a common API makes maintenance & reuse easier.
7676

7777

7878
Further Reading

source/How-To-Guides/Ament-CMake-Documentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ The macros have additional parameters:
341341
342342
find_package(ament_cmake_gtest REQUIRED)
343343
ament_add_gtest(some_test <test_sources>
344-
APPEND_ENV PATH=some/addtional/path/for/testing/resources)
344+
APPEND_ENV PATH=some/additional/path/for/testing/resources)
345345
346346
- ``APPEND_LIBRARY_DIRS``: append libraries so that they can be found by the linker at runtime.
347347
This can be achieved by setting environment variables like ``PATH`` on Windows and ``LD_LIBRARY_PATH`` on Linux, but this makes the call platform specific.

source/How-To-Guides/Core-maintainer-guide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
ROS 2 Core Maintainer Guide
77
===========================
88

9-
Each package in the ROS 2 core has one or more maintainers that are responsibile for the general health of the package.
9+
Each package in the ROS 2 core has one or more maintainers that are responsible for the general health of the package.
1010
This guide gives some information about the responsibilities of a ROS 2 core package maintainer.
1111

1212
.. contents:: Table of Contents

source/How-To-Guides/Getting-Backtraces-in-ROS-2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ We will insert the GDB snippet here.
232232
233233
prefix=['xterm -e gdb -ex run --args']
234234
235-
This will provide a more interactive debbuging experience.
235+
This will provide a more interactive debugging experience.
236236
Example usecase for debugging building upon ``'start_sync_slam_toolbox_node'`` -
237237

238238
.. code-block:: python

source/How-To-Guides/Installation-Troubleshooting.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ then you will need to update your firewall configuration to allow multicast usin
5151
sudo ufw allow in proto udp from 224.0.0.0/4
5252
5353
54-
You can check if the multicast flag is enabled for your network interface using the :code:`ifconfig` tool and looking for :code:`MULITCAST` in the flags section:
54+
You can check if the multicast flag is enabled for your network interface using the :code:`ifconfig` tool and looking for :code:`MULTICAST` in the flags section:
5555

5656
.. code-block:: bash
5757
@@ -218,7 +218,7 @@ To resolve this error, you will need to:
218218
219219
rosdep install error ``homebrew: Failed to detect successful installation of [qt5]``
220220
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
221-
While following the :doc:`Creating a workspace <../Tutorials/Beginner-Client-Libraries/Creating-A-Workspace/Creating-A-Workspace>` tutorial, you might encounter the following error stating that ``rosdep`` failes to install Qt5.
221+
While following the :doc:`Creating a workspace <../Tutorials/Beginner-Client-Libraries/Creating-A-Workspace/Creating-A-Workspace>` tutorial, you might encounter the following error stating that ``rosdep`` fails to install Qt5.
222222

223223
.. code-block:: bash
224224

source/How-To-Guides/Migrating-from-ROS1/Migrating-CPP-Packages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ If your ``CMakeLists.txt`` uses ``include_directories()``, then delete those cal
109109
# Delete calls to include_directories like this one!
110110
include_directories(include ${catkin_INCLUDE_DIRS})
111111
112-
Add a call ``target_include_directories()`` for every library in your pacakage (`example <https://github.com/ros2/geometry2/blob/d85102217f692746abea8546c8e41f0abc95c8b8/tf2/CMakeLists.txt#L24-L26>`__).
112+
Add a call ``target_include_directories()`` for every library in your package (`example <https://github.com/ros2/geometry2/blob/d85102217f692746abea8546c8e41f0abc95c8b8/tf2/CMakeLists.txt#L24-L26>`__).
113113

114114
.. code-block:: cmake
115115

source/How-To-Guides/Migrating-from-ROS1/Migrating-Launch-Files.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ New tags in ROS 2
314314
set_env and unset_env
315315
^^^^^^^^^^^^^^^^^^^^^
316316

317-
See `env`_ tag decription.
317+
See `env`_ tag description.
318318

319319
push_ros_namespace
320320
^^^^^^^^^^^^^^^^^^

source/How-To-Guides/Migrating-from-ROS1/Migrating-Python-Package-Example.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ Remove the statement that imports ``rospy``.
485485
# Remove this
486486
import rospy
487487
488-
Rplace it with a statement that imports ``rclpy``.
488+
Replace it with a statement that imports ``rclpy``.
489489

490490
.. code-block:: Python
491491
@@ -807,7 +807,7 @@ Echo the message published by the node in the third terminal:
807807
808808
You should see messages with the current time being published in the second terminal, and those same messages received in the third.
809809

810-
Refactor code to use ROS 2 convensions
810+
Refactor code to use ROS 2 conventions
811811
--------------------------------------
812812

813813
You have successfully migrated a ROS 1 Python package to ROS 2!

0 commit comments

Comments
 (0)