From 446a484f7f23adae714873d2618614571b68a78f Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Sun, 30 Jul 2017 18:58:19 +0200 Subject: [PATCH] Correct missing parameter documentation. --- src/Generator.Rewrite/GeneratedVariableIdentifier.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) {