Skip to content

Commit 929cbdd

Browse files
authored
typo
1 parent cb205df commit 929cbdd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

snake_tutorial/docs/03_heading-controller.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Feedback control (also called closed-loop control) means that we are using
88
sensor readings (in this case the output pose of the snake) in order to create
99
our control signal that we send to the snake. As a block diagram, it may look
1010
like this:
11+
1112
![heading controller](images/heading-controller.png)
1213

1314
This node is also going to handle the linear velocity command too. We're just
@@ -23,8 +24,8 @@ in the `nodes` directory to house our code. We'll call this file
2324

2425
Note that it is general practice not to add a `.py` file extension to nodes.
2526
This is because the file name becomes the name of the node when building our
26-
package with catkin. Ex: `roslaunch snake_controller snake_heading_controller`
27-
is cleaner than `roslaunch snake_controller snake_heading_controller.py`.
27+
package with catkin. Ex: `rosrun snake_controller snake_heading_controller`
28+
is cleaner than `rosrun snake_controller snake_heading_controller.py`.
2829

2930
Let's start the file by writing a shebang and docstring.
3031
```python

0 commit comments

Comments
 (0)