From: Jarl Gullberg Date: Sun, 30 Jul 2017 16:58:19 +0000 (+0200) Subject: Correct missing parameter documentation. X-Git-Tag: v3.0.0~41^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=446a484f7f23adae714873d2618614571b68a78f;p=platform%2Fcore%2Fcsapi%2Fopentk.git Correct missing parameter documentation. --- diff --git a/src/Generator.Rewrite/GeneratedVariableIdentifier.cs b/src/Generator.Rewrite/GeneratedVariableIdentifier.cs index f8bbe33..6f4e950 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) {