Skip to content

Commit f9ae616

Browse files
author
dksimpson
committed
Edits
1 parent fcd0a4b commit f9ae616

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

articles/cognitive-services/Bing-Autosuggest/quickstarts/csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Follow this quickstart to learn how to make calls to the Bing Autosuggest API an
2525

2626
## Create a Visual Search Solution
2727

28-
1. Create a new console solution in Visual Studio. Then add the following namespaces into the main code file.
28+
1. Create a new console solution in Visual Studio. Then, add the following namespaces into the main code file.
2929

3030
```csharp
3131
using System;
@@ -60,7 +60,7 @@ Follow this quickstart to learn how to make calls to the Bing Autosuggest API an
6060
}
6161
```
6262

63-
2. In the same function above, create a request URI by combining your API host and path. Append your market to the `?mkt=` parameter, and your query to the `&query=` parameter. Be sure to URL-encode your query.
63+
2. In the same function above, create a request URI by combining your API host and path. Append your market to the `mkt=` parameter, and your query to the `query=` parameter. Be sure to URL-encode your query.
6464

6565
```csharp
6666
string uri = host + path + "?mkt=" + market + "&query=" + System.Net.WebUtility.UrlEncode (query);

articles/cognitive-services/Bing-Autosuggest/quickstarts/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Follow this quickstart to learn how to make calls to the Bing Autosuggest API an
5252

5353
## Format the response
5454

55-
Create a method named `prettify()` to format the response returned from the Bing Video API. Use the Gson library's `JsonParser` to take in a JSON string and convert it into an object. Then use `GsonBuilder()` and `toJson()` to create the formatted string.
55+
Create a method named `prettify()` to format the response returned from the Bing Video API. Use the Gson library's `JsonParser` to take in a JSON string and convert it into an object. Then, use `GsonBuilder()` and `toJson()` to create the formatted string.
5656
5757
```java
5858
// pretty-printer for JSON; uses GSON parser to parse and re-serialize

articles/cognitive-services/Bing-Autosuggest/quickstarts/nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Follow this quickstart to learn how to make calls to the Bing Autosuggest API an
4848

4949
## Construct the search request and query.
5050

51-
1. Create a parameters string for your query by appending the market code to the `mkt=` parameter, and your query to the `&q=` parameter.
51+
1. Create a parameters string for your query by appending the market code to the `mkt=` parameter, and your query to the `q=` parameter.
5252

5353
```javascript
5454
let params = '?mkt=' + mkt + '&q=' + query;

articles/cognitive-services/Bing-Autosuggest/quickstarts/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Follow this quickstart to learn how to make calls to the Bing Autosuggest API an
4040
query = 'sail'
4141
```
4242

43-
3. Create a parameters string by appending your market code to the `?mkt=` parameter, and appending your query to the `&q=` parameter.
43+
3. Create a parameters string by appending your market code to the `mkt=` parameter, and appending your query to the `q=` parameter.
4444

4545
```python
4646
params = '?mkt=' + mkt + '&q=' + query

articles/cognitive-services/Bing-Autosuggest/quickstarts/ruby.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Follow this quickstart to learn how to make calls to the Bing Autosuggest API an
4444
query = 'sail'
4545
```
4646

47-
3. Create a parameters string by appending your market code to the `?mkt=` parameter, and appending your query to the `&q=` parameter. Then, construct your request URI by combining the API host, path, and the parameters string.
47+
3. Create a parameters string by appending your market code to the `mkt=` parameter, and appending your query to the `q=` parameter. Then, construct your request URI by combining the API host, path, and the parameters string.
4848

4949
```ruby
5050
params = '?mkt=' + mkt + '&q=' + query

includes/cognitive-services-bing-autosuggest-signup-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ author: aahill
33
ms.author: aahi
44
ms.service: cognitive-services
55
ms.topic: include
6-
ms.date: 05/05/2020
6+
ms.date: 05/06/2020
77
---
88

99
## Create an Azure resource

0 commit comments

Comments
 (0)