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 @@ public QueryVector(ReadOnlyMemory readOnlyMemory) : } /// - /// Performs an implicit conversion from to . + /// Performs an implicit conversion from [] to . /// /// The array. /// @@ -85,7 +85,7 @@ public QueryVector(ReadOnlyMemory readOnlyMemory) : 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 @@ public QueryVector(ReadOnlyMemory readOnlyMemory) : public static implicit operator QueryVector(ReadOnlyMemory readOnlyMemory) => new(readOnlyMemory); /// - /// Performs an implicit conversion from to . + /// Performs an implicit conversion from [] to . /// /// The array. ///