From 4874c938b0a623e0a81282b8ca29fa49159381b1 Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Wed, 6 Dec 2023 11:02:53 +0100 Subject: [PATCH] [csharp] Minor: corrected comment format. --- spine-csharp/src/PhysicsConstraint.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spine-csharp/src/PhysicsConstraint.cs b/spine-csharp/src/PhysicsConstraint.cs index 15b2f0ecf..ec9f44dbb 100644 --- a/spine-csharp/src/PhysicsConstraint.cs +++ b/spine-csharp/src/PhysicsConstraint.cs @@ -70,7 +70,7 @@ namespace Spine { mix = data.mix; } - /** Copy constructor. */ + /// Copy constructor. public PhysicsConstraint (PhysicsConstraint constraint) { if (constraint == null) throw new ArgumentNullException("constraint", "constraint cannot be null."); data = constraint.data; @@ -274,7 +274,7 @@ namespace Spine { public bool Active { get { return active; } } - /** The physics constraint's setup pose data. */ + /// The physics constraint's setup pose data. public PhysicsConstraintData getData () { return data; }