diff --git a/MonoGame.Framework/Utilities/System.Numerics.Vectors/Vector2.cs b/MonoGame.Framework/Utilities/System.Numerics.Vectors/Vector2.cs
index d23a762afba..cb8e18f9684 100644
--- a/MonoGame.Framework/Utilities/System.Numerics.Vectors/Vector2.cs
+++ b/MonoGame.Framework/Utilities/System.Numerics.Vectors/Vector2.cs
@@ -5,9 +5,15 @@ namespace System.Numerics
///
public struct Vector2
{
+ /// The X component of the vector.
public Single X;
+
+ /// The Y component of the vector.
public Single Y;
-
+
+ /// Creates a vector with the specified values.
+ /// The value assigned to the field.
+ /// The value assigned to the field.
public Vector2(Single x, Single y)
{
X = x;