Skip to content

Commit e1f8601

Browse files
author
dksimpson
committed
Edits
1 parent d05d43e commit e1f8601

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

articles/cognitive-services/bing-visual-search/quickstarts/go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ ms.author: aahi
1515

1616
# Quickstart: Get image insights using the Bing Visual Search REST API and Go
1717

18-
This quickstart uses the Go programming language to call the Bing Visual Search API and display results. A POST request uploads an image to the API endpoint. The results include URLs and descriptive information about images similar to the uploaded image.
18+
Use this quickstart to make your first call to the Bing Visual Search API using the Go programming language. A POST request uploads an image to the API endpoint. The results include URLs and descriptive information about images similar to the uploaded image.
1919

2020
## Prerequisites
2121

2222
* Install the [Go binaries](https://golang.org/dl/).
23-
* The go-spew deep pretty printer, which is used to display results. Install go-spew with the `$ go get -u https://github.com/davecgh/go-spew` command.
23+
* Install the go-spew deep pretty printer, which is used to display results. To install go-spew, use the `$ go get -u https://github.com/davecgh/go-spew` command.
2424

2525
[!INCLUDE [cognitive-services-bing-visual-search-signup-requirements](../../../../includes/cognitive-services-bing-visual-search-signup-requirements.md)]
2626

articles/cognitive-services/bing-visual-search/quickstarts/nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Use this quickstart to make your first call to the Bing Visual Search API. This
6464
--boundary_1234-abcd--
6565
```
6666
67-
2. Create a new **FormData** object with `FormData()`, and append your image path to it by using `fs.createReadStream()`:
67+
2. Create a new `FormData` object with `FormData()`, and append your image path to it by using `fs.createReadStream()`:
6868
6969
```javascript
7070
var form = new FormData();

articles/cognitive-services/bing-visual-search/quickstarts/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Use this quickstart to make your first call to the Bing Visual Search API. This
6565

6666
## Parse the JSON response
6767

68-
Create a method called `print_json()` to take in the API response, and print the JSON:
68+
Create a method called `print_json()` to accept the API response, and print the JSON:
6969

7070
```python
7171
def print_json(obj):

articles/cognitive-services/bing-visual-search/quickstarts/ruby.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.author: aahi
1515

1616
# Quickstart: Get image insights using the Bing Visual Search REST API and Ruby
1717

18-
This quickstart uses the Ruby programming language to call Bing Visual Search and display results. A POST request uploads an image to the API endpoint. The results include URLs and descriptive information about images similar to the uploaded image.
18+
Use this quickstart to make your first call to the Bing Visual Search API using the Ruby programming language. A POST request uploads an image to the API endpoint. The results include URLs and descriptive information about images similar to the uploaded image.
1919

2020
## Prerequisites
2121

@@ -282,5 +282,5 @@ JSON Response:
282282
## Next steps
283283

284284
> [!div class="nextstepaction"]
285-
> [Bing Visual Search overview](../overview.md)
285+
> [What is the Bing Visual Search API?](../overview.md)
286286
> [Build a Visual Search single-page web app](../tutorial-bing-visual-search-single-page-app.md)

0 commit comments

Comments
 (0)