Skip to content

Commit 7524611

Browse files
committed
Fix Sandcastle warnings.
1 parent 4cb2e5e commit 7524611

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/MongoDB.Driver.Core/Core/Misc/Ensure.cs

+1
Original file line numberDiff line numberDiff 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>

src/MongoDB.Driver/QueryVector.cs

+3-3
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)