diff --git a/Source/OpenTK/Math/Vector4.cs b/Source/OpenTK/Math/Vector4.cs
index 29d771bd..fb850172 100644
--- a/Source/OpenTK/Math/Vector4.cs
+++ b/Source/OpenTK/Math/Vector4.cs
@@ -137,8 +137,10 @@ namespace OpenTK
///
/// Constructs a new Vector4 from the given Vector3.
+ /// The w component is initialized to 0.
///
/// The Vector3 to copy components from.
+ ///
public Vector4(Vector3 v)
{
X = v.X;
diff --git a/Source/OpenTK/Math/Vector4d.cs b/Source/OpenTK/Math/Vector4d.cs
index 14bd402a..95eec840 100644
--- a/Source/OpenTK/Math/Vector4d.cs
+++ b/Source/OpenTK/Math/Vector4d.cs
@@ -135,8 +135,10 @@ namespace OpenTK
///
/// Constructs a new Vector4d from the given Vector3d.
+ /// The w component is initialized to 0.
///
/// The Vector3d to copy components from.
+ ///
public Vector4d(Vector3d v)
{
X = v.X;