Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links in terminology tutorial (Garden) #2108

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tutorials/terminology.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ to developers touching the source code.

* **Entity**: Every "object" in the world, such as models, links,
collisions, visuals, lights, joints, etc.
An entity [is just a numeric ID](namespace gz_1_1gazebo.html#ad83694d867b0e3a9446b535b5dfd208d),
An entity [is just a numeric ID](namespacegz_1_1sim.html#ad83694d867b0e3a9446b535b5dfd208d),
and may have several components attached to it. Entity IDs are assigned
at runtime.

* **Component**: Adds a certain functionality or characteristic (e.g., pose,
name, material, etc.) to an entity.
Gazebo comes with various
[components](namespace gz_1_1gazebo_1_1components.html)
[components](namespacegz_1_1sim_1_1components.html)
ready to be used, such as `Pose` and `Inertial`, and downstream developers
can also create their own by inheriting from the
[BaseComponent](classignition_1_1gazebo_1_1components_1_1BaseComponent.html)
Expand Down