Skip to content

Commit bb8afb9

Browse files
committed
Fix doc comment warnings.
1 parent 0e2123a commit bb8afb9

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

src/MongoDB.Driver.Core/Core/Events/Diagnostics/PerformanceCounterEventSubscriber.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ public void Handle(ConnectionPoolCheckedOutConnectionEvent @event)
154154
/// Handles the specified event.
155155
/// </summary>
156156
/// <param name="event">The event.</param>
157-
/// <inheritdoc />
158157
public void Handle(ConnectionPoolCheckedInConnectionEvent @event)
159158
{
160159
ConnectionPoolPerformanceRecorder recorder;

src/MongoDB.Driver.GridFS/GridFSBucket.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ public class GridFSBucket : IGridFSBucket
4242
private readonly ImmutableGridFSBucketOptions _options;
4343

4444
// constructors
45-
/// <inheritdoc />
45+
/// <summary>
46+
/// Initializes a new instance of the <see cref="GridFSBucket" /> class.
47+
/// </summary>
48+
/// <param name="database">The database.</param>
49+
/// <param name="options">The options.</param>
4650
public GridFSBucket(IMongoDatabase database, GridFSBucketOptions options = null)
4751
{
4852
_database = Ensure.IsNotNull(database, nameof(database));

src/MongoDB.Driver/IAggregateFluent.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ public interface IAggregateFluent<TResult> : IAsyncCursorSource<TResult>
8383
/// Appends a match stage to the pipeline that matches derived documents and changes the result type to the derived type.
8484
/// </summary>
8585
/// <typeparam name="TNewResult">The type of the derived documents.</typeparam>
86+
/// <param name="newResultSerializer">The new result serializer.</param>
8687
/// <returns>The fluent aggregate interface.</returns>
8788
IAggregateFluent<TNewResult> OfType<TNewResult>(IBsonSerializer<TNewResult> newResultSerializer = null) where TNewResult : TResult;
8889

src/MongoDB.Driver/IMongoIndexManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public interface IMongoIndexManager<TDocument>
6363
/// <param name="models">The models defining each of the indexes.</param>
6464
/// <param name="cancellationToken">The cancellation token.</param>
6565
/// <returns>
66-
/// A task whose result is an <see cref="T:IEnumerable{string}" /> of the names of the indexes that were created.
66+
/// A task whose result is an <see cref="IEnumerable{String}" /> of the names of the indexes that were created.
6767
/// </returns>
6868
Task<IEnumerable<string>> CreateManyAsync(IEnumerable<CreateIndexModel<TDocument>> models, CancellationToken cancellationToken = default(CancellationToken));
6969

src/MongoDB.Driver/ProjectionDefinition.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,12 @@ public ClientSideDeserializationProjectionDefinition(IBsonSerializer<TProjection
487487
_projectionSerializer = projectionSerializer;
488488
}
489489

490-
/// <inheritdoc/>
490+
/// <summary>
491+
/// Gets the result serializer.
492+
/// </summary>
493+
/// <value>
494+
/// The result serializer.
495+
/// </value>
491496
public IBsonSerializer<TProjection> ResultSerializer
492497
{
493498
get { return _projectionSerializer; }

0 commit comments

Comments
 (0)