Skip to content

Commit ee2b745

Browse files
committed
Fixed all correctness issues reported by acrolinx
1 parent 0e5b210 commit ee2b745

7 files changed

+11
-11
lines changed

articles/search/search-howto-index-azure-data-lake-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ By default, most blobs are indexed as a single search document in the index, inc
190190
+ [Indexing JSON blobs](search-howto-index-json-blobs.md)
191191
+ [Indexing CSV blobs](search-howto-index-csv-blobs.md)
192192

193-
A compound or embedded document (such as a ZIP archive, a Word document with embedded Outlook email containing attachments, or a .MSG file with attachments) is also indexed as a single document. For example, all images extracted from the attachments of an .MSG file will be returned in the normalized_images field. If you have images, consider adding [AI enrichment](cognitive-search-concept-intro.md) to get more search utility from that content.
193+
A compound or embedded document (such as a ZIP archive, a Word document with embedded Outlook email containing attachments, or an .MSG file with attachments) is also indexed as a single document. For example, all images extracted from the attachments of an .MSG file will be returned in the normalized_images field. If you have images, consider adding [AI enrichment](cognitive-search-concept-intro.md) to get more search utility from that content.
194194

195195
Textual content of a document is extracted into a string field named "content".
196196

articles/search/search-howto-indexing-azure-blob-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ Add the following metadata properties and values to blobs in Blob Storage. When
250250
| Property name | Property value | Explanation |
251251
| ------------- | -------------- | ----------- |
252252
| "AzureSearch_Skip" |`"true"` |Instructs the blob indexer to completely skip the blob. Neither metadata nor content extraction is attempted. This is useful when a particular blob fails repeatedly and interrupts the indexing process. |
253-
| "AzureSearch_SkipContent" |`"true"` |This is equivalent of "dataToExtract" : "allMetadata" setting described [above](#PartsOfBlobToIndex) scoped to a particular blob. |
253+
| "AzureSearch_SkipContent" |`"true"` |This is equivalent to the `"dataToExtract" : "allMetadata"` setting described [above](#PartsOfBlobToIndex) scoped to a particular blob. |
254254

255255
## How to index large datasets
256256

articles/search/search-howto-managed-identities-cosmos-db.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Create the data source and provide either a system-assigned managed identity or
3737

3838
The [REST API](/rest/api/searchservice/create-data-source), Azure portal, and the [.NET SDK](/dotnet/api/azure.search.documents.indexes.models.searchindexerdatasourcetype) support using a system-assigned managed identity.
3939

40-
When connecting with a system-assigned managed identity, the only change to the data source definition is the format of the "credentials" property. You'll provide the database name and a ResourceId that has no account key or password. The ResourceId must include the subscription ID of Cosmos DB, the resource group, and the Cosmos DB account name.
40+
When you're connecting with a system-assigned managed identity, the only change to the data source definition is the format of the "credentials" property. You'll provide the database name and a ResourceId that has no account key or password. The ResourceId must include the subscription ID of Cosmos DB, the resource group, and the Cosmos DB account name.
4141

4242
* For SQL collections, the connection string does not require an ApiKind.
4343
* For MongoDB collections, add "ApiKind=MongoDb" to the connection string.
@@ -66,7 +66,7 @@ api-key: [Search service admin key]
6666

6767
### User-assigned managed identity (preview)
6868

69-
The 2021-04-30-preview REST API supports connections based on a user-assigned managed identity. When connecting with a user-assigned managed identity, there are two changes to the data source definition:
69+
The 2021-04-30-preview REST API supports connections based on a user-assigned managed identity. When you're connecting with a user-assigned managed identity, there are two changes to the data source definition:
7070

7171
* First, the format of the "credentials" property is the database name and a ResourceId that has no account key or password. The ResourceId must include the subscription ID of Cosmos DB, the resource group, and the Cosmos DB account name.
7272

articles/search/search-howto-managed-identities-data-sources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ You can use the Management REST API instead of the portal to assign a user manag
9292
9393
### [**Azure PowerShell**](#tab/ps-sys)
9494
95-
See [Create a search service with a system assigned managed identity (Azure PowerShellP](search-manage-powershell.md#create-a-service-with-a-system-assigned-managed-identity).
95+
See [Create a search service with a system assigned managed identity (Azure PowerShell](search-manage-powershell.md#create-a-service-with-a-system-assigned-managed-identity).
9696
9797
### [**Azure CLI**](#tab/cli-sys)
9898

articles/search/search-howto-managed-identities-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Create the data source and provide either a system-assigned managed identity or
9090

9191
The [REST API](/rest/api/searchservice/create-data-source), Azure portal, and the [.NET SDK](/dotnet/api/azure.search.documents.indexes.models.searchindexerdatasourceconnection) support system-assigned managed identity.
9292

93-
When connecting with a system-assigned managed identity, the only change to the data source definition is the format of the "credentials" property. You'll provide an Initial Catalog or Database name and a ResourceId that has no account key or password. The ResourceId must include the subscription ID of Azure SQL Database, the resource group of SQL Database, and the name of the SQL database.
93+
When you're connecting with a system-assigned managed identity, the only change to the data source definition is the format of the "credentials" property. You'll provide an Initial Catalog or Database name and a ResourceId that has no account key or password. The ResourceId must include the subscription ID of Azure SQL Database, the resource group of SQL Database, and the name of the SQL database.
9494

9595
Here is an example of how to create a data source to index data from a storage account using the [Create Data Source](/rest/api/searchservice/create-data-source) REST API and a managed identity connection string. The managed identity connection string format is the same for the REST API, .NET SDK, and the Azure portal.
9696

@@ -113,7 +113,7 @@ api-key: [admin key]
113113

114114
### User-assigned managed identity (preview)
115115

116-
The 2021-04-30-preview REST API supports connections based on a user-assigned managed identity. When connecting with a user-assigned managed identity, there are two changes to the data source definition:
116+
The 2021-04-30-preview REST API supports connections based on a user-assigned managed identity. When you're connecting with a user-assigned managed identity, there are two changes to the data source definition:
117117

118118
* First, the format of the "credentials" property is an Initial Catalog or Database name and a ResourceId that has no account key or password. The ResourceId must include the subscription ID of Azure SQL Database, the resource group of SQL Database, and the name of the SQL database. This is the same format as the system-assigned managed identity.
119119

articles/search/search-howto-managed-identities-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Create the data source and provide either a system-assigned managed identity or
4545

4646
The [REST API](/rest/api/searchservice/create-data-source), Azure portal, and the [.NET SDK](/dotnet/api/azure.search.documents.indexes.models.searchindexerdatasourceconnection) support using a system-assigned managed identity.
4747

48-
When connecting with a system-assigned managed identity, the only change to the data source definition is the format of the "credentials" property. You'll provide a ResourceId that has no account key or password. The ResourceId must include the subscription ID of the storage account, the resource group of the storage account, and the storage account name.
48+
When you're connecting with a system-assigned managed identity, the only change to the data source definition is the format of the "credentials" property. You'll provide a ResourceId that has no account key or password. The ResourceId must include the subscription ID of the storage account, the resource group of the storage account, and the storage account name.
4949

5050
Here is an example of how to create a data source to index data from a storage account using the [Create Data Source](/rest/api/searchservice/create-data-source) REST API and a managed identity connection string. The managed identity connection string format is the same for the REST API, .NET SDK, and the Azure portal.
5151

@@ -68,7 +68,7 @@ api-key: [admin key]
6868

6969
### User-assigned managed identity (preview)
7070

71-
The 2021-04-30-preview REST API supports connections based on a user-assigned managed identity. When connecting with a user-assigned managed identity, there are two changes to the data source definition:
71+
The 2021-04-30-preview REST API supports connections based on a user-assigned managed identity. When you're connecting with a user-assigned managed identity, there are two changes to the data source definition:
7272

7373
* First, the format of the "credentials" property is a ResourceId that has no account key or password. The ResourceId must include the subscription ID of the storage account, the resource group of the storage account, and the storage account name. This is the same format as the system-assigned managed identity.
7474

articles/search/whats-new.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Learn what's new in the service. Bookmark this page to keep up to date with serv
5858
| [Spell check query terms (preview)](speller-how-to-add.md) | Before query terms reach the search engine, you can have them checked for spelling errors. The `speller` option works with any query type (simple, full, or semantic). | Public preview, REST only, api-version=2020-06-30-Preview|
5959
| [SharePoint indexer (preview)](search-howto-index-sharepoint-online.md) | This indexer connects you to a SharePoint site so that you can index content from a document library. | Public preview, REST only, api-version=2020-06-30-Preview |
6060
| [Normalizers (preview)](search-normalizers.md) | Normalizers provide simple text pre-processing: consistent casing, accent removal, and ASCII folding, without invoking the full text analysis chain.| Public preview, REST only, api-version=2020-06-30-Preview |
61-
| [Custom Entity Lookup skill](cognitive-search-skill-custom-entity-lookup.md ) | A cognitive skill that looks for text from a custom, user-defined list of words and phrases. Using this list, it labels all documents with any matching entities. The skill also supports a degree of fuzzy matching that can be applied to find matches that are similar but not quite exact. | Generally available. |
61+
| [Custom Entity Lookup skill](cognitive-search-skill-custom-entity-lookup.md ) | A cognitive skill that looks for text from a custom, user-defined list of words and phrases. From this list, the skill labels all documents with any matching entities. The skill also supports a degree of fuzzy matching that can be applied to find matches that are similar but not quite exact. | Generally available. |
6262

6363
## February 2021
6464

@@ -125,7 +125,7 @@ Learn what's new in the service. Bookmark this page to keep up to date with serv
125125

126126
## New service name
127127

128-
Azure Search was renamed to **Azure Cognitive Search** in October 2019 to reflect the expanded (yet optional) use of cognitive skills and AI processing in core operations. API versions, NuGet packages, namespaces, and endpoints are unchanged. New and existing search solutions are unaffected by the service name change.
128+
Azure Search was renamed to **Azure Cognitive Search** in October 2019 to reflect the expanded (yet optional) use of cognitive skills and AI processing in service operations. API versions, NuGet packages, namespaces, and endpoints are unchanged. New and existing search solutions are unaffected by the service name change.
129129

130130
## Service updates
131131

0 commit comments

Comments
 (0)