aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs
diff options
context:
space:
mode:
authorJon Skeet <jonskeet@google.com>2015-10-23 09:37:19 +0100
committerJon Skeet <jonskeet@google.com>2015-10-30 09:37:01 +0000
commitf5a0a7feeb7dcde7f5eddd4548cbf08e9e3ccd57 (patch)
tree0eef3fbf64b377e72e1dd3b5ed891903e04909c6 /csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs
parenta74e912a8be1274fd561db5e8133937d4e9c4a2b (diff)
downloadprotobuf-f5a0a7feeb7dcde7f5eddd4548cbf08e9e3ccd57.tar.gz
protobuf-f5a0a7feeb7dcde7f5eddd4548cbf08e9e3ccd57.tar.bz2
protobuf-f5a0a7feeb7dcde7f5eddd4548cbf08e9e3ccd57.zip
Fix clearing wrapper type fields with reflection.
The nullable value type fields already worked, but the use of the CLR property concealed the difference between string and StringWrapper fields.
Diffstat (limited to 'csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs')
-rw-r--r--csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs b/csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs
index 619a6ac8..3d6cc59f 100644
--- a/csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs
+++ b/csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs
@@ -197,7 +197,7 @@ namespace Google.Protobuf.Reflection
}
/// <summary>
- /// Returns the type of the field.
+ /// Returns the type of the field.
/// </summary>
public FieldType FieldType
{