Skip to content

Commit 1d67954

Browse files
author
Nate Koenig
committed
spelling
Signed-off-by: Nate Koenig <nate@openrobotics.org>
1 parent da49e30 commit 1d67954

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

include/sdf/Link.hh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -254,25 +254,25 @@ namespace sdf
254254

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

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

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

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

include/sdf/Model.hh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -348,19 +348,19 @@ namespace sdf
348348

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

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

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

include/sdf/World.hh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,19 +182,19 @@ namespace sdf
182182

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

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

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

0 commit comments

Comments
 (0)