Skip to content

Commit 40681bb

Browse files
authored
Fixing minor typos (moveit#890)
1 parent 78a02ca commit 40681bb

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.docker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ For more information see the pages [Continuous Integration and Docker](http://mo
44

55
To build the Docker image locally, run the following from the root folder of this repository.
66

7-
docker build -f .docker/Dockerfile -t moveit2_tutorials --build-arg ROS_DISTRO=${ROS_DISTRO} .
7+
docker build -f .docker/Dockerfile -t moveit2_tutorials --build-arg ROS_DISTRO=${ROS_DISTRO}.
88

99
where `${ROS_DISTRO}` should be available if you have a ROS installation sourced locally, else you can pick a target release, e.g., `humble` or `rolling`.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This repository is built and deployed automatically by GitHub Actions:
1111

1212
## Contributing
1313

14-
We strongly encourage you to help improve MoveIt's documentation. Please consider helping improve the tutorials, port old ones from ROS 1, and write new tutorials. We recommend you read the quality standards below as well as the [How to Write a MoveIt Tutorial](https://moveit.picknik.ai/main/doc/how_to_contribute/how_to_write_tutorials.html) page.
14+
We strongly encourage you to help improve MoveIt's documentation. Please consider helping improve the tutorials, port old ones from ROS 1, and write new tutorials. We recommend you read the quality standards below as well as the [How to Write a MoveIt Tutorial](https://moveit.picknik.ai/main/doc/how_to_contribute/how_to_write_tutorials.html) page.
1515

1616
If you find an issue with the tutorials you are not able to fix yourself, please [open an issue on GitHub](https://github.com/ros-planning/moveit2_tutorials/issues/new) or open a PR with proposed changes.
1717

@@ -120,7 +120,7 @@ You can embed video with raw HTML, like in this example from the Pick and Place
120120
<iframe width="700px" height="400px" src="https://www.youtube.com/embed/QBJPxx_63Bs?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
121121
</div>
122122
```
123-
This includes [Youtube's suggested embed HTML](https://support.google.com/youtube/answer/171780?hl=en).
123+
This includes [YouTube's suggested embed HTML](https://support.google.com/youtube/answer/171780?hl=en).
124124

125125
#### Local Video
126126
To embed a video that is included in this repository, you also will use raw HTML, like this example from the Quickstart in RViz tutorial.

doc/tutorials/your_first_project/your_first_project.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ This first block of code is a bit of boilerplate but you should be used to seein
7777

7878
We will build and run the program to see that everything is right before we move on.
7979

80-
Change directory back to the workspace directory ``ws_moveit`` and run this command:
80+
Change the directory back to the workspace directory ``ws_moveit`` and run this command:
8181

8282
.. code-block:: bash
8383
@@ -200,7 +200,7 @@ This should cause the robot in RViz to move and end up in this pose:
200200
.. image:: rviz_2.png
201201
:width: 300px
202202

203-
Note that if you ran the node ``hello_moveit`` without launching the demo launch file first, it will wait for 10 seconds and then print this error and exit.
203+
Note that if you run the node ``hello_moveit`` without launching the demo launch file first, it will wait for 10 seconds and then print this error and exit.
204204

205205
.. code-block:: bash
206206
@@ -230,7 +230,7 @@ The starting pose is implicitly the position published by the joint state publis
230230

231231
One more thing to note about this next section is the use of lambdas for constructing the message type ``target_pose`` and planning.
232232
This is a pattern you'll find in modern C++ codebases that enables writing in a more declarative style.
233-
For more information about this pattern there are a couple of links at the end of this tutorial.
233+
For more information about this pattern, there are a couple of links at the end of this tutorial.
234234

235235
.. code-block:: C++
236236

@@ -252,7 +252,7 @@ For more information about this pattern there are a couple of links at the end o
252252
return std::make_pair(ok, msg);
253253
}();
254254

255-
Finally, we execute our plan if planning was successful, otherwise we log an error:
255+
Finally, we execute our plan if planning is successful, otherwise, we log an error:
256256

257257
.. code-block:: C++
258258

index.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
MoveIt 2 Documentation
22
======================
33

4-
Welcome to the unified MoveIt documentation, which includes tutorials, how-to-guides, core concepts, and more.
5-
6-
MoveIt 2 is the robotic manipulation platform for ROS 2, and incorporates the latest advances in motion planning, manipulation, 3D perception, kinematics, control, and navigation. MoveIt 2 was first released in 2019; for ROS 1 documentation, see `MoveIt 1 tutorials <https://ros-planning.github.io/moveit_tutorials>`_. For the commercially supported version see `MoveIt Pro tutorials <https://docs.picknik.ai/en/stable/>`_.
4+
Welcome to the unified MoveIt documentation, which includes tutorials, how-to guides, core concepts, and more.
75

6+
MoveIt 2 is the robotic manipulation platform for ROS 2 and incorporates the latest advances in motion planning, manipulation, 3D perception, kinematics, control, and navigation. MoveIt 2 was first released in 2019; for ROS 1 documentation, see `MoveIt 1 tutorials <https://ros-planning.github.io/moveit_tutorials>`_.
7+
For the commercially supported version see `MoveIt Pro tutorials <https://docs.picknik.ai/en/stable/>`_.
88
.. image:: https://moveit.ros.org/assets/images/roadmap.png
99
:width: 400px
1010

0 commit comments

Comments
 (0)