Fix comments.
diff --git a/src/ProtocolBuffers/CodedInputStream.cs b/src/ProtocolBuffers/CodedInputStream.cs
index 1e17950..509b416 100644
--- a/src/ProtocolBuffers/CodedInputStream.cs
+++ b/src/ProtocolBuffers/CodedInputStream.cs
@@ -530,6 +530,9 @@
             return true;

         }

 

+        /// <summary>

+        /// Returns true if the next tag is also part of the same unpacked array.

+        /// </summary>

         private bool ContinueArray(uint currentTag)

         {

             string ignore;

@@ -546,7 +549,7 @@
         }

 

         /// <summary>

-        /// Returns true if the next tag is also part of the same unpacked array

+        /// Returns true if the next tag is also part of the same array, which may or may not be packed.

         /// </summary>

         private bool ContinueArray(uint currentTag, bool packed, int oldLimit)

         {