aboutsummaryrefslogtreecommitdiffhomepage
path: root/csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs
diff options
context:
space:
mode:
authorGravatar Msp <manupsunny@gmail.com>2016-11-04 23:54:34 +0530
committerGravatar Msp <manupsunny@gmail.com>2016-11-04 23:54:34 +0530
commit089aaa996a378276f7c4e37a230836bf786cddf6 (patch)
tree71e50c1688a29d95f0307c4c9d7e1e2767ef30be /csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs
parent7bd11fcb59872b4448b13a1bdfc173428fdfb8f6 (diff)
Fix message for InvalidProtocolBufferException
Diffstat (limited to 'csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs')
-rw-r--r--csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs b/csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs
index eeb0f13a..0fbc5306 100644
--- a/csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs
+++ b/csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs
@@ -61,7 +61,7 @@ namespace Google.Protobuf
{
return new InvalidProtocolBufferException(
"While parsing a protocol message, the input ended unexpectedly " +
- "in the middle of a field. This could mean either than the " +
+ "in the middle of a field. This could mean either that the " +
"input has been truncated or that an embedded message " +
"misreported its own length.");
}