From 531a3bdf67ff1e60baf940c9130dfb3572ec0ee8 Mon Sep 17 00:00:00 2001 From: John Hamby Date: Wed, 20 Jul 2016 16:33:47 -0700 Subject: [PATCH] Corrected some typos in comments. --- src/Test/PdbUtilities/Metadata/ILVisualizer.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Test/PdbUtilities/Metadata/ILVisualizer.cs b/src/Test/PdbUtilities/Metadata/ILVisualizer.cs index e19353bf88f..9bded52407a 100644 --- a/src/Test/PdbUtilities/Metadata/ILVisualizer.cs +++ b/src/Test/PdbUtilities/Metadata/ILVisualizer.cs @@ -384,14 +384,14 @@ public void VisualizeHeader(StringBuilder sb, int codeSize, int maxStack, Immuta uint pseudoToken = ReadUInt32(ilBytes, ref curIndex); if (opCode.OperandType == OperandType.InlineTok) { - // Check of an encoding of the maximum method token index value. + // Check for an encoding of the maximum method token index value. if ((pseudoToken & 0xff000000) == 0x40000000) { sb.Append("Max Method Token Index"); break; } - // Check of an encoding of a source document index. + // Check for an encoding of a source document index. if ((pseudoToken & 0xff000000) == 0x20000000) { sb.Append("Source Document " + (pseudoToken & 0x00ffffff).ToString()); @@ -416,7 +416,7 @@ public void VisualizeHeader(StringBuilder sb, int codeSize, int maxStack, Immuta { sb.Append(' '); uint pseudoToken = ReadUInt32(ilBytes, ref curIndex); - // Check for an encoding of that indices the current module's module version ID. + // Check for an encoding of the spelling of the current module's module version ID. if (pseudoToken == 0x80000000) { sb.Append("##MVID##"); -- GitLab