From 75246110ed1247226fcc7f8eb2c54ffab745693e Mon Sep 17 00:00:00 2001 From: rstam Date: Mon, 9 Oct 2023 14:21:58 -0700 Subject: [PATCH] Fix Sandcastle warnings. --- src/MongoDB.Driver.Core/Core/Misc/Ensure.cs | 1 + src/MongoDB.Driver/QueryVector.cs | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/MongoDB.Driver.Core/Core/Misc/Ensure.cs b/src/MongoDB.Driver.Core/Core/Misc/Ensure.cs index 44146b42cc6..7fbab39b9b7 100644 --- a/src/MongoDB.Driver.Core/Core/Misc/Ensure.cs +++ b/src/MongoDB.Driver.Core/Core/Misc/Ensure.cs @@ -270,6 +270,7 @@ public static string IsNotNullOrEmpty(string value, string paramName) /// /// Ensures that the value of a parameter is not null or empty. /// + /// The type of the elements. /// The value of the parameter. /// The name of the parameter. /// The value of the parameter. diff --git a/src/MongoDB.Driver/QueryVector.cs b/src/MongoDB.Driver/QueryVector.cs index b57c0c13cfd..2af2615826a 100644 --- a/src/MongoDB.Driver/QueryVector.cs +++ b/src/MongoDB.Driver/QueryVector.cs @@ -67,7 +67,7 @@ private QueryVector(BsonArray array) } /// - /// Performs an implicit conversion from to . + /// Performs an implicit conversion from [] to . /// /// The array. /// @@ -85,7 +85,7 @@ private QueryVector(BsonArray array) public static implicit operator QueryVector(ReadOnlyMemory readOnlyMemory) => new(readOnlyMemory); /// - /// Performs an implicit conversion from to . + /// Performs an implicit conversion from [] to . /// /// The array. /// @@ -103,7 +103,7 @@ private QueryVector(BsonArray array) public static implicit operator QueryVector(ReadOnlyMemory readOnlyMemory) => new(readOnlyMemory); /// - /// Performs an implicit conversion from to . + /// Performs an implicit conversion from [] to . /// /// The array. ///