Browse Source

Fix one cref that Mono was unhappy with

Jon Skeet 10 years ago
parent
commit
30e8157550
1 changed files with 1 additions and 1 deletions
  1. 1 1
      csharp/src/Google.Protobuf/Preconditions.cs

+ 1 - 1
csharp/src/Google.Protobuf/Preconditions.cs

@@ -57,7 +57,7 @@ namespace Google.Protobuf
         /// return the value to the caller.
         /// return the value to the caller.
         /// </summary>
         /// </summary>
         /// <remarks>
         /// <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
         /// 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
         /// 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.
         /// value type, or you want to use it with an unconstrained type parameter.