aboutsummaryrefslogtreecommitdiffhomepage
path: root/csharp
diff options
context:
space:
mode:
authorGravatar Jon Skeet <jonskeet@google.com>2015-08-05 06:39:43 +0100
committerGravatar Jon Skeet <jonskeet@google.com>2015-08-05 06:39:43 +0100
commit30e8157550e02625bb4a4fa93153442d6e454709 (patch)
tree8c5262ae9c1124e7aafe83a11398c8871779fde9 /csharp
parent811fc89f0eb036d95653f5fed4b0ffea292ce791 (diff)
Fix one cref that Mono was unhappy with
Diffstat (limited to 'csharp')
-rw-r--r--csharp/src/Google.Protobuf/Preconditions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Google.Protobuf/Preconditions.cs b/csharp/src/Google.Protobuf/Preconditions.cs
index ff3bd0f1..2db35ff6 100644
--- a/csharp/src/Google.Protobuf/Preconditions.cs
+++ b/csharp/src/Google.Protobuf/Preconditions.cs
@@ -57,7 +57,7 @@ namespace Google.Protobuf
/// return the value to the caller.
/// </summary>
/// <remarks>
- /// This is equivalent to <see cref="CheckNotNull"/> but without the type parameter
+ /// This is equivalent to <see cref="CheckNotNull{T}(T, string)"/> but without the type parameter
/// constraint. In most cases, the constraint is useful to prevent you from calling CheckNotNull
/// with a value type - but it gets in the way if either you want to use it with a nullable
/// value type, or you want to use it with an unconstrained type parameter.