Skip to content

Commit 7e120a8

Browse files
committed
picking up changes from an unsaved file
1 parent 47eab3d commit 7e120a8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

articles/search/search-howto-reindex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Queries continue to run, but if you're updating or removing existing fields, you
4949

5050
+ For updating the contents of simple fields and subfields in complex types, list only the fields you want to change. For example, if you only need to update a description field, the payload should consist of the document key and the modified description. Omitting other fields retains their existing values.
5151

52-
+ For merging inline changes into string collection, provide the entire value. Recall the `tags` field example from the previous section. New values overwrite the old values, and there is no merging at the field content level.
52+
+ For merging inline changes into string collection, provide the entire value. Recall the `tags` field example from the previous section. New values overwrite the old values, and there's no merging at the field content level.
5353

5454
Here's a [REST API example](search-get-started-rest.md) demonstrating these tips:
5555

articles/search/search-security-rbac.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -277,15 +277,15 @@ This approach assumes Visual Studio Code with a REST client extension.
277277
az account get-access-token --query accessToken --output tsv
278278
```
279279

280-
1. In a new text file in Visual Studio Code, paste in these variables:
280+
1. Paste these variables in a new text file in Visual Studio Code.
281281

282282
```http
283283
@baseUrl = PASTE-YOUR-SEARCH-SERVICE-URL-HERE
284284
@index-name = PASTE-YOUR-INDEX-NAME-HERE
285285
@token = PASTE-YOUR-TOKEN-HERE
286286
```
287287

288-
1. Paste in and then send a request that uses the variables you've specified. For the "Search Index Data Reader" role, you can send a query. You can use any [supported API version](/rest/api/searchservice/search-service-api-versions).
288+
1. Paste and then send a request that uses the variables you've specified. For the "Search Index Data Reader" role, you can send a query. You can use any [supported API version](/rest/api/searchservice/search-service-api-versions).
289289

290290
```http
291291
POST https://{{baseUrl}}/indexes/{{index-name}}/docs/search?api-version=2023-11-01 HTTP/1.1
@@ -380,7 +380,7 @@ If you're already a Contributor or Owner of your search service, you can present
380380
Get-AzAccessToken -ResourceUrl https://search.azure.com
381381
```
382382

383-
1. In a new text file in Visual Studio Code, paste in these variables:
383+
1. Paste these variables into a new text file in Visual Studio Code.
384384

385385
```http
386386
@baseUrl = PASTE-YOUR-SEARCH-SERVICE-URL-HERE
@@ -538,15 +538,15 @@ The PowerShell example shows the JSON syntax for creating a custom role that's a
538538

539539
1. See [Create or update Azure custom roles using the REST API](../role-based-access-control/custom-roles-rest.md) for steps.
540540

541-
1. Clone or create a role, or use JSON to specify the custom role (see the PowerShell tab for JSON syntax).
541+
1. Copy or create a role, or use JSON to specify the custom role (see the PowerShell tab for JSON syntax).
542542

543543
### [**Azure CLI**](#tab/custom-role-cli)
544544

545545
1. Review the [list of atomic permissions](../role-based-access-control/resource-provider-operations.md#microsoftsearch) to determine which ones you need.
546546

547547
1. See [Create or update Azure custom roles using Azure CLI](../role-based-access-control/custom-roles-cli.md) for steps.
548548

549-
1. Clone or create a role, or use JSON to specify the custom role (see the PowerShell tab for JSON syntax).
549+
1. See the PowerShell tab for JSON syntax.
550550

551551
---
552552

0 commit comments

Comments
 (0)