From 051406c27924aab87dfb3c11f4956d0d2ebb59fd Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sun, 8 May 2022 00:07:07 +0100 Subject: [PATCH] Fix xmldoc to reference Vector3.magnitude not .Length() --- X10D.Unity/src/Numerics/RandomExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/X10D.Unity/src/Numerics/RandomExtensions.cs b/X10D.Unity/src/Numerics/RandomExtensions.cs index 98d90d0..3b10b79 100644 --- a/X10D.Unity/src/Numerics/RandomExtensions.cs +++ b/X10D.Unity/src/Numerics/RandomExtensions.cs @@ -70,7 +70,7 @@ public static class RandomExtensions /// /// The instance /// - /// A whose returns 1, and whose components indicate a random + /// A whose returns 1, and whose components indicate a random /// point on the unit circle. /// public static Vector2 NextUnitVector2(this Random random) @@ -94,7 +94,7 @@ public static class RandomExtensions /// /// The instance /// - /// A whose returns 1, and whose components indicate a random + /// A whose returns 1, and whose components indicate a random /// point on the unit sphere. /// public static Vector3 NextUnitVector3(this Random random)