@@ -41,7 +41,7 @@ public interface IMongoSearchIndexManager
41
41
/// <param name="models">The models defining each of the indexes.</param>
42
42
/// <param name="cancellationToken">The cancellation token.</param>
43
43
/// <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.
45
45
/// </returns>
46
46
Task < IEnumerable < string > > CreateManyAsync ( IEnumerable < CreateSearchIndexModel > models , CancellationToken cancellationToken = default ) ;
47
47
@@ -83,7 +83,7 @@ public interface IMongoSearchIndexManager
83
83
/// <param name="model">The model defining the index.</param>
84
84
/// <param name="cancellationToken">The cancellation token.</param>
85
85
/// <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.
87
87
/// </returns>
88
88
Task < string > CreateOneAsync ( CreateSearchIndexModel model , CancellationToken cancellationToken = default ) ;
89
89
@@ -99,7 +99,7 @@ public interface IMongoSearchIndexManager
99
99
/// </summary>
100
100
/// <param name="name">The index name.</param>
101
101
/// <param name="cancellationToken">The cancellation token.</param>
102
- /// <returns>A task .</returns>
102
+ /// <returns>A Task .</returns>
103
103
Task DropOneAsync ( string name , CancellationToken cancellationToken = default ) ;
104
104
105
105
/// <summary>
@@ -138,6 +138,7 @@ public interface IMongoSearchIndexManager
138
138
/// <param name="name">Name of the index.</param>
139
139
/// <param name="definition">The definition.</param>
140
140
/// <param name="cancellationToken">The cancellation token.</param>
141
+ /// <returns>A Task.</returns>
141
142
Task UpdateAsync ( string name , BsonDocument definition , CancellationToken cancellationToken = default ) ;
142
143
}
143
144
}
0 commit comments