File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
MongoDB.Driver.Core/Core/Misc Expand file tree Collapse file tree 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)
270270 /// <summary>
271271 /// Ensures that the value of a parameter is not null or empty.
272272 /// </summary>
273+ /// <typeparam name="T">The type of the elements.</typeparam>
273274 /// <param name="value">The value of the parameter.</param>
274275 /// <param name="paramName">The name of the parameter.</param>
275276 /// <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) :
6767 }
6868
6969 /// <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"/>.
7171 /// </summary>
7272 /// <param name="array">The array.</param>
7373 /// <returns>
@@ -85,7 +85,7 @@ public QueryVector(ReadOnlyMemory<int> readOnlyMemory) :
8585 public static implicit operator QueryVector ( ReadOnlyMemory < double > readOnlyMemory ) => new ( readOnlyMemory ) ;
8686
8787 /// <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"/>.
8989 /// </summary>
9090 /// <param name="array">The array.</param>
9191 /// <returns>
@@ -103,7 +103,7 @@ public QueryVector(ReadOnlyMemory<int> readOnlyMemory) :
103103 public static implicit operator QueryVector ( ReadOnlyMemory < float > readOnlyMemory ) => new ( readOnlyMemory ) ;
104104
105105 /// <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"/>.
107107 /// </summary>
108108 /// <param name="array">The array.</param>
109109 /// <returns>
You can’t perform that action at this time.
0 commit comments