From 86773207149c761e993cfb990e449e790035c11c Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Wed, 24 Nov 2010 21:15:38 +0000 Subject: [PATCH] * Vector4.cs: Fixed doc comment to refer to the single-precision version of the structure, rather than the double-precision one. --- Source/OpenTK/Math/Vector4.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OpenTK/Math/Vector4.cs b/Source/OpenTK/Math/Vector4.cs index fb850172..384fdf74 100644 --- a/Source/OpenTK/Math/Vector4.cs +++ b/Source/OpenTK/Math/Vector4.cs @@ -140,7 +140,7 @@ namespace OpenTK /// The w component is initialized to 0. /// /// The Vector3 to copy components from. - /// + /// public Vector4(Vector3 v) { X = v.X;