Skip to content

Commit

Permalink
spelling
Browse files Browse the repository at this point in the history
Signed-off-by: Nate Koenig <[email protected]>
  • Loading branch information
Nate Koenig committed Dec 1, 2021
1 parent da49e30 commit 1d67954
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions include/sdf/Link.hh
Original file line number Diff line number Diff line change
Expand Up @@ -254,25 +254,25 @@ namespace sdf

/// \brief Add a collision to the link.
/// \param[in] _collision Collision to add.
/// \return True if successfull, false if a collision with the name already
/// \return True if successful, false if a collision with the name already
/// exists.
public: bool AddCollision(const Collision &_collision);

/// \brief Add a visual to the link.
/// \param[in] _visual Visual to add.
/// \return True if successfull, false if a visual with the name already
/// \return True if successful, false if a visual with the name already
/// exists.
public: bool AddVisual(const Visual &_visual);

/// \brief Add a light to the link.
/// \param[in] _light Light to add.
/// \return True if successfull, false if a light with the name already
/// \return True if successful, false if a light with the name already
/// exists.
public: bool AddLight(const Light &_light);

/// \brief Add a sensor to the link.
/// \param[in] _sensor Sensor to add.
/// \return True if successfull, false if a sensor with the name already
/// \return True if successful, false if a sensor with the name already
/// exists.
public: bool AddSensor(const Sensor &_sensor);

Expand Down
6 changes: 3 additions & 3 deletions include/sdf/Model.hh
Original file line number Diff line number Diff line change
Expand Up @@ -348,19 +348,19 @@ namespace sdf

/// \brief Add a link to the model.
/// \param[in] _link Link to add.
/// \return True if successfull, false if a link with the name already
/// \return True if successful, false if a link with the name already
/// exists.
public: bool AddLink(const Link &_link);

/// \brief Add a joint to the model.
/// \param[in] _link Joint to add.
/// \return True if successfull, false if a joint with the name already
/// \return True if successful, false if a joint with the name already
/// exists.
public: bool AddJoint(const Joint &_joint);

/// \brief Add a model to the model.
/// \param[in] _model Model to add.
/// \return True if successfull, false if a model with the name already
/// \return True if successful, false if a model with the name already
/// exists.
public: bool AddModel(const Model &_model);

Expand Down
6 changes: 3 additions & 3 deletions include/sdf/World.hh
Original file line number Diff line number Diff line change
Expand Up @@ -182,19 +182,19 @@ namespace sdf

/// \brief Add a model to the world.
/// \param[in] _model Model to add.
/// \return True if successfull, false if a model with the name already
/// \return True if successful, false if a model with the name already
/// exists.
public: bool AddModel(const Model &_model);

/// \brief Add an actor to the world.
/// \param[in] _actor Actor to add.
/// \return True if successfull, false if an actor with the name already
/// \return True if successful, false if an actor with the name already
/// exists.
public: bool AddActor(const Actor &_actor);

/// \brief Add a light to the world.
/// \param[in] _light Light to add.
/// \return True if successfull, false if a lights with the name already
/// \return True if successful, false if a lights with the name already
/// exists.
public: bool AddLight(const Light &_light);

Expand Down

0 comments on commit 1d67954

Please sign in to comment.