aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/CodedInputStream.cs
diff options
context:
space:
mode:
authorJon Skeet <skeet@pobox.com>2011-08-07 18:17:38 +0100
committerJon Skeet <skeet@pobox.com>2011-08-07 18:17:38 +0100
commite8c76bd84b0b032ec3ece2455564f3c5731f7e0f (patch)
tree3294af271e892b37614e39f1470136e264ee2e99 /src/ProtocolBuffers/CodedInputStream.cs
parent5bacf7d11f2b030e9a5333d3e6d4e1091cc46a0e (diff)
downloadprotobuf-e8c76bd84b0b032ec3ece2455564f3c5731f7e0f.tar.gz
protobuf-e8c76bd84b0b032ec3ece2455564f3c5731f7e0f.tar.bz2
protobuf-e8c76bd84b0b032ec3ece2455564f3c5731f7e0f.zip
Fix comments.
Diffstat (limited to 'src/ProtocolBuffers/CodedInputStream.cs')
-rw-r--r--src/ProtocolBuffers/CodedInputStream.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ProtocolBuffers/CodedInputStream.cs b/src/ProtocolBuffers/CodedInputStream.cs
index 1e179509..509b4164 100644
--- a/src/ProtocolBuffers/CodedInputStream.cs
+++ b/src/ProtocolBuffers/CodedInputStream.cs
@@ -530,6 +530,9 @@ namespace Google.ProtocolBuffers
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 @@ namespace Google.ProtocolBuffers
}
/// <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)
{