Skip to content

Commit 28ff2a8

Browse files
committed
applied pre commit
1 parent 0770246 commit 28ff2a8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

doc/tutorials/pick_and_place_with_moveit_task_constructor/pick_and_place_with_moveit_task_constructor.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Create a new package with the following command: ::
9999
--dependencies moveit_task_constructor_core rclcpp \
100100
--node-name mtc_node mtc_tutorial
101101

102-
This will create a new package and folder called ``mtc_tutorial`` with a dependancy on ``moveit_task_constructor_core`` as well as a hello world example in ``src/mtc_node``.
102+
This will create a new package and folder called ``mtc_tutorial`` with a dependency on ``moveit_task_constructor_core`` as well as a hello world example in ``src/mtc_node``.
103103

104104
4.2 The Code
105105
^^^^^^^^^^^^
@@ -538,7 +538,7 @@ To run the MoveIt Task Constructor node, we need a second launch file to start t
538538
539539
Save a launch file as ``pick_place_demo.launch.py`` or download one to the package's launch directory. Make sure to edit the ``CMakeLists.txt`` so it includes the launch folder by adding the following lines: ::
540540

541-
install(DIRECTORY launch
541+
install(DIRECTORY launch
542542
DESTINATION share/${PROJECT_NAME}
543543
)
544544

doc/tutorials/quickstart_in_rviz/quickstart_in_rviz_tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Step 4: Use Motion Planning with the Panda
167167

168168
* Un-check the **Show Trail** checkbox in the **Planned Path** tree menu.
169169

170-
* In the **MotionPlanning** window under the **Planning** tab, press the **Plan** button.
170+
* In the **MotionPlanning** window under the **Planning** tab, press the **Plan** button.
171171

172172
* Check the **Show Trail** checkbox in the **Planned Path** tree menu. You should see the arm's path represented by a series of manipulator poses.
173173

doc/tutorials/visualizing_in_rviz/hello_moveit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main(int argc, char* argv[])
3636
auto const draw_title = [&moveit_visual_tools](auto text) {
3737
auto const text_pose = [] {
3838
auto msg = Eigen::Isometry3d::Identity();
39-
msg.translation().z() = 1.0; //Place text 1m above the base link
39+
msg.translation().z() = 1.0; // Place text 1m above the base link
4040
return msg;
4141
}();
4242
moveit_visual_tools.publishText(text_pose, text, rviz_visual_tools::WHITE, rviz_visual_tools::XLARGE);

0 commit comments

Comments
 (0)