Commit e8c76bd8 authored by Jon Skeet's avatar Jon Skeet

Fix comments.

parent 5bacf7d1
...@@ -530,6 +530,9 @@ namespace Google.ProtocolBuffers ...@@ -530,6 +530,9 @@ namespace Google.ProtocolBuffers
return true; return true;
} }
/// <summary>
/// Returns true if the next tag is also part of the same unpacked array.
/// </summary>
private bool ContinueArray(uint currentTag) private bool ContinueArray(uint currentTag)
{ {
string ignore; string ignore;
...@@ -546,7 +549,7 @@ namespace Google.ProtocolBuffers ...@@ -546,7 +549,7 @@ namespace Google.ProtocolBuffers
} }
/// <summary> /// <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> /// </summary>
private bool ContinueArray(uint currentTag, bool packed, int oldLimit) private bool ContinueArray(uint currentTag, bool packed, int oldLimit)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment