From 5324195b01bb36c8d60d6817eb22a597b7792e13 Mon Sep 17 00:00:00 2001 From: Steven Peters Date: Tue, 13 Jul 2021 22:09:06 -0700 Subject: [PATCH] Fix comment Signed-off-by: Steven Peters --- include/ignition/physics/World.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/ignition/physics/World.hh b/include/ignition/physics/World.hh index 3d4b20bf4..f3e54047b 100644 --- a/include/ignition/physics/World.hh +++ b/include/ignition/physics/World.hh @@ -124,14 +124,14 @@ namespace ignition /// \brief Implementation API for setting the gravity vector, which is /// expressed in the World frame.. /// \param[in] _id Identity of the world. - /// \param[in] _gravity Name of gravity. + /// \param[in] _gravity Value of gravity. public: virtual void SetWorldGravity( const Identity &_id, const LinearVectorType &_gravity) = 0; /// \brief Implementation API for getting the gravity expressed in the /// world frame. /// \param[in] _id Identity of the world. - /// \return Name of gravity. + /// \return Value of gravity. public: virtual LinearVectorType GetWorldGravity( const Identity &_id) const = 0; };