diff --git a/src/Generator.Rewrite/GeneratedVariableIdentifier.cs b/src/Generator.Rewrite/GeneratedVariableIdentifier.cs
index f8bbe332..6f4e950e 100644
--- a/src/Generator.Rewrite/GeneratedVariableIdentifier.cs
+++ b/src/Generator.Rewrite/GeneratedVariableIdentifier.cs
@@ -4,7 +4,7 @@ using Mono.Cecil.Cil;
namespace OpenTK.Rewrite
{
///
- /// Acts as a unique identifier for a generated named variable that can be passed between methods. Replaces uses of
+ /// Acts as a unique identifier for a generated named variable that can be passed between methods. Replaces uses of
/// variable names from Mono.Cecil.
///
internal sealed class GeneratedVariableIdentifier
@@ -13,7 +13,7 @@ namespace OpenTK.Rewrite
/// The which the variable is in.
///
public MethodBody Body { get; }
-
+
///
/// The which the variable idetifier maps to.
///
@@ -28,8 +28,8 @@ namespace OpenTK.Rewrite
/// Initializes a new instance of the class.
///
/// The method body which the variable is in.
+ /// The definition of the generated variable.
/// The name of the generated variable.
- /// The index of the generated variable in its method.
///
public GeneratedVariableIdentifier(MethodBody body, VariableDefinition definition, string name)
{