Browse Source

Chore, doc typos fix (#1110)

Alex 1 year ago
parent
commit
6370b0f087
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Jolt/Physics/Body/MotionProperties.h

+ 2 - 2
Jolt/Physics/Body/MotionProperties.h

@@ -134,10 +134,10 @@ public:
 	// Get the total amount of torque applied to the center of mass this time step (through Body::AddForce/Body::AddTorque calls). Note that it will reset to zero after PhysicsSystem::Update.
 	JPH_INLINE Vec3			GetAccumulatedTorque() const									{ return Vec3::sLoadFloat3Unsafe(mTorque); }
 
-	// Reset the total accumulated force, not that this will be done automatically after every time step.
+	// Reset the total accumulated force, note that this will be done automatically after every time step.
 	JPH_INLINE void			ResetForce()													{ mForce = Float3(0, 0, 0); }
 
-	// Reset the total accumulated torque, not that this will be done automatically after every time step.
+	// Reset the total accumulated torque, note that this will be done automatically after every time step.
 	JPH_INLINE void			ResetTorque()													{ mTorque = Float3(0, 0, 0); }
 
 	// Reset the current velocity and accumulated force and torque.