aboutsummaryrefslogtreecommitdiff
path: root/csharp
diff options
context:
space:
mode:
authorJon Skeet <jonskeet@google.com>2015-09-30 06:59:38 +0100
committerJon Skeet <jonskeet@google.com>2015-09-30 06:59:38 +0100
commit6bbbdfa24c51c9aae1c58f25c84ad9759f05eab9 (patch)
treed769ba8333277d25d9aab5302f0ec056338cbe74 /csharp
parente2c823027e674646a60a262830f08497bf046b38 (diff)
downloadprotobuf-6bbbdfa24c51c9aae1c58f25c84ad9759f05eab9.tar.gz
protobuf-6bbbdfa24c51c9aae1c58f25c84ad9759f05eab9.tar.bz2
protobuf-6bbbdfa24c51c9aae1c58f25c84ad9759f05eab9.zip
Fix typo in oneof case enum comment
Diffstat (limited to 'csharp')
-rw-r--r--csharp/src/Google.Protobuf.Conformance/Conformance.cs6
-rw-r--r--csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs4
-rw-r--r--csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs4
-rw-r--r--csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs2
-rw-r--r--csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs2
5 files changed, 9 insertions, 9 deletions
diff --git a/csharp/src/Google.Protobuf.Conformance/Conformance.cs b/csharp/src/Google.Protobuf.Conformance/Conformance.cs
index d13c6d62..f05d03b2 100644
--- a/csharp/src/Google.Protobuf.Conformance/Conformance.cs
+++ b/csharp/src/Google.Protobuf.Conformance/Conformance.cs
@@ -227,7 +227,7 @@ namespace Conformance {
}
private object payload_;
- /// <summary>Enum of possibly cases for the "payload" oneof.</summary>
+ /// <summary>Enum of possible cases for the "payload" oneof.</summary>
public enum PayloadOneofCase {
None = 0,
ProtobufPayload = 1,
@@ -434,7 +434,7 @@ namespace Conformance {
}
private object result_;
- /// <summary>Enum of possibly cases for the "result" oneof.</summary>
+ /// <summary>Enum of possible cases for the "result" oneof.</summary>
public enum ResultOneofCase {
None = 0,
ParseError = 1,
@@ -1244,7 +1244,7 @@ namespace Conformance {
}
private object oneofField_;
- /// <summary>Enum of possibly cases for the "oneof_field" oneof.</summary>
+ /// <summary>Enum of possible cases for the "oneof_field" oneof.</summary>
public enum OneofFieldOneofCase {
None = 0,
OneofUint32 = 111,
diff --git a/csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs b/csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs
index c44f90b1..6c1a594f 100644
--- a/csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs
+++ b/csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs
@@ -1170,7 +1170,7 @@ namespace UnitTest.Issues.TestProtos {
}
private object o1_;
- /// <summary>Enum of possibly cases for the "o1" oneof.</summary>
+ /// <summary>Enum of possible cases for the "o1" oneof.</summary>
public enum O1OneofCase {
None = 0,
O1String = 2,
@@ -1187,7 +1187,7 @@ namespace UnitTest.Issues.TestProtos {
}
private object o2_;
- /// <summary>Enum of possibly cases for the "o2" oneof.</summary>
+ /// <summary>Enum of possible cases for the "o2" oneof.</summary>
public enum O2OneofCase {
None = 0,
O2Int32 = 6,
diff --git a/csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs b/csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs
index ccafafc0..f7ad620c 100644
--- a/csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs
+++ b/csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs
@@ -717,7 +717,7 @@ namespace Google.Protobuf.TestProtos {
}
private object oneofField_;
- /// <summary>Enum of possibly cases for the "oneof_field" oneof.</summary>
+ /// <summary>Enum of possible cases for the "oneof_field" oneof.</summary>
public enum OneofFieldOneofCase {
None = 0,
OneofUint32 = 111,
@@ -4274,7 +4274,7 @@ namespace Google.Protobuf.TestProtos {
}
private object foo_;
- /// <summary>Enum of possibly cases for the "foo" oneof.</summary>
+ /// <summary>Enum of possible cases for the "foo" oneof.</summary>
public enum FooOneofCase {
None = 0,
FooInt = 1,
diff --git a/csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs b/csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs
index 9b7e1704..126bc265 100644
--- a/csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs
+++ b/csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs
@@ -1470,7 +1470,7 @@ namespace Google.Protobuf.TestProtos {
}
private object oneofField_;
- /// <summary>Enum of possibly cases for the "oneof_field" oneof.</summary>
+ /// <summary>Enum of possible cases for the "oneof_field" oneof.</summary>
public enum OneofFieldOneofCase {
None = 0,
AnyField = 1,
diff --git a/csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs b/csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs
index 30a1569b..257d52d8 100644
--- a/csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs
+++ b/csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs
@@ -255,7 +255,7 @@ namespace Google.Protobuf.WellKnownTypes {
}
private object kind_;
- /// <summary>Enum of possibly cases for the "kind" oneof.</summary>
+ /// <summary>Enum of possible cases for the "kind" oneof.</summary>
public enum KindOneofCase {
None = 0,
NullValue = 1,