Skip to content

Commit

Permalink
Fix Sandcastle warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
rstam committed Oct 9, 2023
1 parent 4cb2e5e commit 7524611
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/MongoDB.Driver.Core/Core/Misc/Ensure.cs
Expand Up @@ -270,6 +270,7 @@ public static string IsNotNullOrEmpty(string value, string paramName)
/// <summary>
/// Ensures that the value of a parameter is not null or empty.
/// </summary>
/// <typeparam name="T">The type of the elements.</typeparam>
/// <param name="value">The value of the parameter.</param>
/// <param name="paramName">The name of the parameter.</param>
/// <returns>The value of the parameter.</returns>
Expand Down
6 changes: 3 additions & 3 deletions src/MongoDB.Driver/QueryVector.cs
Expand Up @@ -67,7 +67,7 @@ private QueryVector(BsonArray array)
}

/// <summary>
/// Performs an implicit conversion from <see cref="T:double[]"/> to <see cref="QueryVector"/>.
/// Performs an implicit conversion from <see cref="double"/>[] to <see cref="QueryVector"/>.
/// </summary>
/// <param name="array">The array.</param>
/// <returns>
Expand All @@ -85,7 +85,7 @@ private QueryVector(BsonArray array)
public static implicit operator QueryVector(ReadOnlyMemory<double> readOnlyMemory) => new(readOnlyMemory);

/// <summary>
/// Performs an implicit conversion from <see cref="T:float[]"/> to <see cref="QueryVector"/>.
/// Performs an implicit conversion from <see cref="float"/>[] to <see cref="QueryVector"/>.
/// </summary>
/// <param name="array">The array.</param>
/// <returns>
Expand All @@ -103,7 +103,7 @@ private QueryVector(BsonArray array)
public static implicit operator QueryVector(ReadOnlyMemory<float> readOnlyMemory) => new(readOnlyMemory);

/// <summary>
/// Performs an implicit conversion from <see cref="T:int[]"/> to <see cref="QueryVector"/>.
/// Performs an implicit conversion from <see cref="int"/>[] to <see cref="QueryVector"/>.
/// </summary>
/// <param name="array">The array.</param>
/// <returns>
Expand Down

0 comments on commit 7524611

Please sign in to comment.