@@ -41,7 +41,7 @@ public interface IMongoSearchIndexManager
4141 /// <param name="models">The models defining each of the indexes.</param>
4242 /// <param name="cancellationToken">The cancellation token.</param>
4343 /// <returns>
44- /// A task whose result is an <see cref="IEnumerable{String}" /> of the names of the indexes that were created.
44+ /// A Task whose result is an <see cref="IEnumerable{String}" /> of the names of the indexes that were created.
4545 /// </returns>
4646 Task < IEnumerable < string > > CreateManyAsync ( IEnumerable < CreateSearchIndexModel > models , CancellationToken cancellationToken = default ) ;
4747
@@ -83,7 +83,7 @@ public interface IMongoSearchIndexManager
8383 /// <param name="model">The model defining the index.</param>
8484 /// <param name="cancellationToken">The cancellation token.</param>
8585 /// <returns>
86- /// A task whose result is the name of the index that was created.
86+ /// A Task whose result is the name of the index that was created.
8787 /// </returns>
8888 Task < string > CreateOneAsync ( CreateSearchIndexModel model , CancellationToken cancellationToken = default ) ;
8989
@@ -99,7 +99,7 @@ public interface IMongoSearchIndexManager
9999 /// </summary>
100100 /// <param name="name">The index name.</param>
101101 /// <param name="cancellationToken">The cancellation token.</param>
102- /// <returns>A task .</returns>
102+ /// <returns>A Task .</returns>
103103 Task DropOneAsync ( string name , CancellationToken cancellationToken = default ) ;
104104
105105 /// <summary>
@@ -138,6 +138,7 @@ public interface IMongoSearchIndexManager
138138 /// <param name="name">Name of the index.</param>
139139 /// <param name="definition">The definition.</param>
140140 /// <param name="cancellationToken">The cancellation token.</param>
141+ /// <returns>A Task.</returns>
141142 Task UpdateAsync ( string name , BsonDocument definition , CancellationToken cancellationToken = default ) ;
142143 }
143144}
0 commit comments