File tree 2 files changed +4
-3
lines changed
MongoDB.Driver.Core/Core/Misc
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,7 @@ public static string IsNotNullOrEmpty(string value, string paramName)
270
270
/// <summary>
271
271
/// Ensures that the value of a parameter is not null or empty.
272
272
/// </summary>
273
+ /// <typeparam name="T">The type of the elements.</typeparam>
273
274
/// <param name="value">The value of the parameter.</param>
274
275
/// <param name="paramName">The name of the parameter.</param>
275
276
/// <returns>The value of the parameter.</returns>
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public QueryVector(ReadOnlyMemory<int> readOnlyMemory) :
67
67
}
68
68
69
69
/// <summary>
70
- /// Performs an implicit conversion from <see cref="T: double[] "/> to <see cref="QueryVector"/>.
70
+ /// Performs an implicit conversion from <see cref="double"/>[] to <see cref="QueryVector"/>.
71
71
/// </summary>
72
72
/// <param name="array">The array.</param>
73
73
/// <returns>
@@ -85,7 +85,7 @@ public QueryVector(ReadOnlyMemory<int> readOnlyMemory) :
85
85
public static implicit operator QueryVector ( ReadOnlyMemory < double > readOnlyMemory ) => new ( readOnlyMemory ) ;
86
86
87
87
/// <summary>
88
- /// Performs an implicit conversion from <see cref="T: float[] "/> to <see cref="QueryVector"/>.
88
+ /// Performs an implicit conversion from <see cref="float"/>[] to <see cref="QueryVector"/>.
89
89
/// </summary>
90
90
/// <param name="array">The array.</param>
91
91
/// <returns>
@@ -103,7 +103,7 @@ public QueryVector(ReadOnlyMemory<int> readOnlyMemory) :
103
103
public static implicit operator QueryVector ( ReadOnlyMemory < float > readOnlyMemory ) => new ( readOnlyMemory ) ;
104
104
105
105
/// <summary>
106
- /// Performs an implicit conversion from <see cref="T: int[] "/> to <see cref="QueryVector"/>.
106
+ /// Performs an implicit conversion from <see cref="int"/>[] to <see cref="QueryVector"/>.
107
107
/// </summary>
108
108
/// <param name="array">The array.</param>
109
109
/// <returns>
You can’t perform that action at this time.
0 commit comments