Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
tg-msft committed Jun 9, 2020
1 parent 14bdc9b commit d87c3c9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"3924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7" +
"d3113e92484cf7045cc7")]

[assembly: SuppressMessage("Usage", "AZC0012:Avoid single word type names", Justification = "<Pending>", Scope = "type", Target = "~T:Azure.Search.Documents.Models.Analyzer")]
[assembly: SuppressMessage("Usage", "AZC0012:Avoid single word type names", Justification = "<Pending>", Scope = "type", Target = "~T:Azure.Search.Documents.Models.Skill")]
[assembly: SuppressMessage("Usage", "AZC0012:Avoid single word type names", Justification = "<Pending>", Scope = "type", Target = "~T:Azure.Search.Documents.Models.Skillset")]
[assembly: SuppressMessage("Usage", "AZC0012:Avoid single word type names", Justification = "Search service terminology", Scope = "type", Target = "~T:Azure.Search.Documents.Models.Analyzer")]
[assembly: SuppressMessage("Usage", "AZC0012:Avoid single word type names", Justification = "Search service terminology", Scope = "type", Target = "~T:Azure.Search.Documents.Models.Skill")]
[assembly: SuppressMessage("Usage", "AZC0012:Avoid single word type names", Justification = "Search service terminology", Scope = "type", Target = "~T:Azure.Search.Documents.Models.Skillset")]
[assembly: SuppressMessage("Usage", "AZC0012:Avoid single word type names", Justification = "Search service terminology", Scope = "type", Target = "~T:Azure.Search.Documents.Models.Suggester")]
[assembly: SuppressMessage("Usage", "AZC0012:Avoid single word type names", Justification = "<Pending>", Scope = "type", Target = "~T:Azure.Search.Documents.Models.Tokenizer")]
[assembly: SuppressMessage("Usage", "AZC0012:Avoid single word type names", Justification = "Search service terminology", Scope = "type", Target = "~T:Azure.Search.Documents.Models.Tokenizer")]
10 changes: 5 additions & 5 deletions sdk/search/Azure.Search.Documents/src/SearchClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1763,7 +1763,7 @@ await IndexDocumentsAsync<T>(
.ConfigureAwait(false);

/// <summary>
/// MergeOrUpload documents to the index as a batch.
/// Merge or upload documents to the index as a batch.
/// </summary>
/// <typeparam name="T">
/// The .NET type that maps to the index schema. Instances of this type
Expand Down Expand Up @@ -1860,7 +1860,7 @@ await IndexDocumentsAsync<T>(
.ConfigureAwait(false);

/// <summary>
/// Delete documents to the index as a batch.
/// Delete documents from the index as a batch.
/// </summary>
/// <typeparam name="T">
/// The .NET type that maps to the index schema. Instances of this type
Expand Down Expand Up @@ -1908,7 +1908,7 @@ public virtual Response<IndexDocumentsResult> DeleteDocuments<T>(
cancellationToken);

/// <summary>
/// Delete documents to the index as a batch.
/// Delete documents from the index as a batch.
/// </summary>
/// <typeparam name="T">
/// The .NET type that maps to the index schema. Instances of this type
Expand Down Expand Up @@ -1957,7 +1957,7 @@ await IndexDocumentsAsync<T>(
.ConfigureAwait(false);

/// <summary>
/// Delete documents to the index as a batch given only their keys.
/// Delete documents from the index as a batch given only their keys.
/// </summary>
/// <param name="keyName">
/// The name of the key field that uniquely identifies documents in
Expand Down Expand Up @@ -2001,7 +2001,7 @@ public virtual Response<IndexDocumentsResult> DeleteDocuments(
cancellationToken);

/// <summary>
/// Delete documents to the index as a batch given only their keys.
/// Delete documents from the index as a batch given only their keys.
/// </summary>
/// <param name="keyName">
/// The name of the key field that uniquely identifies documents in
Expand Down

0 comments on commit d87c3c9

Please sign in to comment.