From 84f7e09f0279cb1cf32c104d4c6ccf79539795ed Mon Sep 17 00:00:00 2001 From: csharptest Date: Thu, 14 Jul 2011 13:20:21 -0500 Subject: [PATCH] Fixed comment --- src/ProtocolBuffers/CodedInputStream.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProtocolBuffers/CodedInputStream.cs b/src/ProtocolBuffers/CodedInputStream.cs index e6110fde2b..9655f0d083 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; }