Skip to content

Commit

Permalink
Merge pull request #362 from DavidMerzJr/fix/session-2-2
Browse files Browse the repository at this point in the history
Typos in Session 2.2
  • Loading branch information
DavidMerzJr committed Oct 6, 2021
2 parents 2add68a + 092baad commit 060b782
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gh_pages/_source/session2/ros2/2-Launch-Files.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The ROS architecture encourages engineers to use ''nodes'' as a fundamental unit
In this exercise, you will:
1. Create a new package, `myworkcell_support`.
1. Create a directory in this package called `launch`.
1. Create a file inside this directory called `workcell.launch` that:
1. Create a file inside this directory called `workcell.launch.py` that:
1. Launches `fake_ar_publisher`
1. Launches `vision_node`

Expand Down Expand Up @@ -102,11 +102,13 @@ You may also choose to launch `myworkcell_core` node with the others or keep it
name='fake_ar_publisher_node',
package='fake_ar_publisher',
executable='fake_ar_publisher_node',
output='screen',
),
launch_ros.actions.Node(
name='vision_node',
package='myworkcell_core',
executable='vision_node',
output='screen',
),
```

Expand Down

0 comments on commit 060b782

Please sign in to comment.