aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/CodedInputStream.cs
diff options
context:
space:
mode:
authorcsharptest <roger@csharptest.net>2011-07-14 13:20:21 -0500
committerrogerk <devnull@localhost>2011-07-14 13:20:21 -0500
commit84f7e09f0279cb1cf32c104d4c6ccf79539795ed (patch)
tree7d266ebc91cf85505f8d1eac04c005570d3b66c1 /src/ProtocolBuffers/CodedInputStream.cs
parented701ad2a5c8d3fabfaaacba58f2dfa7d78e6c2c (diff)
downloadprotobuf-84f7e09f0279cb1cf32c104d4c6ccf79539795ed.tar.gz
protobuf-84f7e09f0279cb1cf32c104d4c6ccf79539795ed.tar.bz2
protobuf-84f7e09f0279cb1cf32c104d4c6ccf79539795ed.zip
Fixed comment
Diffstat (limited to 'src/ProtocolBuffers/CodedInputStream.cs')
-rw-r--r--src/ProtocolBuffers/CodedInputStream.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ProtocolBuffers/CodedInputStream.cs b/src/ProtocolBuffers/CodedInputStream.cs
index e6110fde..9655f0d0 100644
--- a/src/ProtocolBuffers/CodedInputStream.cs
+++ b/src/ProtocolBuffers/CodedInputStream.cs
@@ -425,7 +425,7 @@ namespace Google.ProtocolBuffers
}
else
{
- // Slow path: Build a byte array first then copy it.
+ // Slow path: Build a byte array and attach it to a new ByteString.
value = ByteString.AttachBytes(ReadRawBytes(size));
return true;
}