diff --git a/Source/GLControl/GLControl.cs b/Source/GLControl/GLControl.cs
index adc6dcf1..f3a8541f 100644
--- a/Source/GLControl/GLControl.cs
+++ b/Source/GLControl/GLControl.cs
@@ -41,7 +41,10 @@ using OpenTK.Graphics.OpenGL;
namespace OpenTK
{
///
- /// Defines a UserControl with OpenGL rendering capabilities.
+ /// OpenGL-aware WinForms control.
+ /// The WinForms designer will always call the default constructor.
+ /// Inherit from this class and call one of its specialized constructors
+ /// to enable antialiasing or custom s.
///
public partial class GLControl : UserControl
{
@@ -64,14 +67,14 @@ namespace OpenTK
#region --- Constructors ---
///
- /// Constructs a new GLControl.
+ /// Constructs a new instance.
///
public GLControl()
: this(GraphicsMode.Default)
{ }
///
- /// Constructs a new GLControl with the specified GraphicsMode.
+ /// Constructs a new instance with the specified GraphicsMode.
///
/// The OpenTK.Graphics.GraphicsMode of the control.
public GLControl(GraphicsMode mode)
@@ -79,7 +82,7 @@ namespace OpenTK
{ }
///
- /// Constructs a new GLControl with the specified GraphicsMode.
+ /// Constructs a new instance with the specified GraphicsMode.
///
/// The OpenTK.Graphics.GraphicsMode of the control.
/// The major version for the OpenGL GraphicsContext.