Skip to content

Commit 7777615

Browse files
author
dksimpson
committed
Edits
1 parent 9b6b7da commit 7777615

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

articles/cognitive-services/Bing-Web-Search/quickstarts/csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ namespace BingSearchApisQuickstart
6060

6161
A few variables must be set before we can continue. Add this code to the `Program` class you created in the previous section:
6262

63-
1. For the value of `uriBase` you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
63+
1. For the `uriBase` value, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
6464

6565
2. Confirm that `uriBase` is valid and replace the `accessKey` value with a subscription key from your Azure account.
6666

@@ -82,7 +82,7 @@ const string searchTerm = "Microsoft Cognitive Services";
8282

8383
The `Main()` method is required and is the first method invoked when you start the program. In this application, the main method validates the `accessKey`, makes a request, and prints the response.
8484

85-
Keep in mind that `main()` is dependent on methods that you create in the next few sections.
85+
Keep in mind that `main()` is dependent on methods that you create in the next sections.
8686

8787
```csharp
8888
static void Main()

articles/cognitive-services/Bing-Web-Search/quickstarts/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ type BingAnswer struct {
109109

110110
This code declares the main function and sets the required variables:
111111

112-
1. For the value of `endpoint`, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
112+
1. For `endpoint` value, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
113113

114114
2. Confirm that the endpoint is correct and replace the `token` value with a valid subscription key from your Azure account.
115115

articles/cognitive-services/Bing-Web-Search/quickstarts/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class BingWebSearch {
7171

7272
The following code sets the `subscriptionKey`, `host`, `path`, and `searchTerm`. Add this code to the `BingWebSearch` class described in the previous section:
7373

74-
1. For the value of `host`, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
74+
1. For the `host` value, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
7575

7676
2. Replace the `subscriptionKey` value with a valid subscription key from your Azure account.
7777

articles/cognitive-services/Bing-Web-Search/quickstarts/nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ if (!SUBSCRIPTION_KEY) {
5454

5555
This function makes a secure GET request and saves the search query as a query parameter in the path.
5656

57-
1. For the value of `hostname`, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
57+
1. For the `hostname` value, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
5858

5959
2. Use `encodeURIComponent` to escape invalid characters. The subscription key is passed in a header.
6060

articles/cognitive-services/Bing-Web-Search/quickstarts/php.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Before we get started, locate `php.ini` and uncomment this line:
3939

4040
1. Create a new PHP project in your favorite IDE or editor. Add opening and closing tags: `<?php` and `?>`.
4141

42-
2. For the value of `$endpoint`, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
42+
2. For the `$endpoint` value, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
4343

4444
3. Confirm that the `$endpoint` value is correct and replace the `$accesskey` value with a valid subscription key from your Azure account.
4545

articles/cognitive-services/Bing-Web-Search/quickstarts/ruby.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ require 'json'
4141

4242
A few variables must be set before we can continue:
4343

44-
1. For the value of `uri`, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
44+
1. For the `uri` value, you can use the global endpoint in the following code, or use the [custom subdomain](../../../cognitive-services/cognitive-services-custom-subdomains.md) endpoint displayed in the Azure portal for your resource.
4545

4646
2. Confirm that the `uri` and `path` values are valid and replace the `accessKey` value with a subscription key from your Azure account.
4747

0 commit comments

Comments
 (0)