aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Skeet <jonskeet@google.com>2015-08-07 13:41:26 +0100
committerJon Skeet <jonskeet@google.com>2015-08-08 07:25:29 +0100
commit889b88a29fe7f433a6eaa2792c1202e0af46fa92 (patch)
treeaa20dbf81ba7915aacee3d8d5dd13e357111748f
parent6f300442bc0e5eced5f48820bcd5f24fce9e3867 (diff)
downloadprotobuf-889b88a29fe7f433a6eaa2792c1202e0af46fa92.tar.gz
protobuf-889b88a29fe7f433a6eaa2792c1202e0af46fa92.tar.bz2
protobuf-889b88a29fe7f433a6eaa2792c1202e0af46fa92.zip
Remove reference to generic types within XML comment.
Visual Studio is happy with it, but Mono isn't :(
-rw-r--r--csharp/src/Google.Protobuf/CodedOutputStream.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp/src/Google.Protobuf/CodedOutputStream.cs b/csharp/src/Google.Protobuf/CodedOutputStream.cs
index 7f41cb7a..d6355f03 100644
--- a/csharp/src/Google.Protobuf/CodedOutputStream.cs
+++ b/csharp/src/Google.Protobuf/CodedOutputStream.cs
@@ -51,8 +51,8 @@ namespace Google.Protobuf
/// this class should just call one of the <c>WriteTag</c> overloads before each value.
/// </para>
/// <para>
- /// Repeated fields and map fields are not handled by this class; use <see cref="RepeatedField{T}"/>
- /// and <see cref="MapField{TKey, TValue}"/> to serialize such fields.
+ /// Repeated fields and map fields are not handled by this class; use <c>RepeatedField&lt;T&gt;</c>
+ /// and <c>MapField&lt;TKey, TValue&gt;</c> to serialize such fields.
/// </para>
/// </remarks>
public sealed partial class CodedOutputStream