Skip to content

Commit 3bf12c6

Browse files
authored
Fix grammar nits (#429)
1 parent ea8b4fc commit 3bf12c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/tutorials/visualizing_in_rviz/visualizing_in_rviz.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ After we've constructed and initialized, we now create some closures (function o
112112

113113
.. code-block:: C++
114114

115-
// Create a closures for visualization
115+
// Create closures for visualization
116116
auto const draw_title = [&moveit_visual_tools](auto text) {
117117
auto const text_pose = [] {
118118
auto msg = Eigen::Isometry3d::Identity();

doc/tutorials/your_first_project/your_first_project.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ If it fails to find that within 10 seconds, it prints this error and terminates
200200

201201
The first thing we do is create the MoveGroupInterface. This object will be used to interact with move_group, which allows us to plan and execute trajectories.
202202
Note that this is the only mutable object that we create in this program.
203-
Another thing to take note of is the second interface to the ``MoveGroupInterface`` object we are creating here: ``"panda_arm"``.
203+
Another thing to take note of is the second argument to the ``MoveGroupInterface`` object we are creating here: ``"panda_arm"``.
204204
That is the group of joints as defined in the robot description that we are going to operate on with this ``MoveGroupInterface``.
205205

206206
.. code-block:: C++

0 commit comments

Comments
 (0)