Browse Source

Fixed typo

Jorrit Rouwe 2 days ago
parent
commit
8311925dd9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jolt/Physics/Constraints/Constraint.h

+ 1 - 1
Jolt/Physics/Constraints/Constraint.h

@@ -77,7 +77,7 @@ public:
 	/// If this constraint is enabled initially. Use Constraint::SetEnabled to toggle after creation.
 	/// If this constraint is enabled initially. Use Constraint::SetEnabled to toggle after creation.
 	bool						mEnabled = true;
 	bool						mEnabled = true;
 
 
-	/// Priority of the constraint when solving. Higher numbers have are more likely to be solved correctly.
+	/// Priority of the constraint when solving. Higher numbers are more likely to be solved correctly.
 	/// Note that if you want a deterministic simulation and you cannot guarantee the order in which constraints are added/removed, you can make the priority for all constraints unique to get a deterministic ordering.
 	/// Note that if you want a deterministic simulation and you cannot guarantee the order in which constraints are added/removed, you can make the priority for all constraints unique to get a deterministic ordering.
 	uint32						mConstraintPriority = 0;
 	uint32						mConstraintPriority = 0;