Skip to content

Commit 163cd9e

Browse files
Merge pull request #6100 from diberry/diberry/0717-uat-assist-ai-search-tutorial-2
AI Search - UAT Assist - .NET overview
2 parents ea591a9 + f3d7a88 commit 163cd9e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/search/tutorial-csharp-overview.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ ms.devlang: csharp
1818

1919
# Step 1 - Overview of adding search to a static web app with .NET
2020

21-
This tutorial builds a website to search through a catalog of books and then deploys the website to an Azure static web app.
21+
This tutorial builds a website that searches through a catalog of books and then deploys the website to an Azure Static Web App.
2222

2323
## What does the sample do?
2424

25-
This sample website provides access to a catalog of 10,000 books. You can search the catalog by entering text in the search bar. While you enter text, the website uses the search index's suggestion feature to autocomplete the text. Once the query finishes, the list of books is displayed with a portion of the details. You can select a book to see all the details, stored in the search index, of the book.
25+
This sample website provides access to a catalog of 10,000 books. You can search the catalog by entering text in the search bar. While you enter text, the website uses the search index's suggestion feature to autocomplete the text. When the query finishes, the website displays the list of books with a portion of the details. You can select a book to see all the details, stored in the search index, of the book.
2626

2727
:::image type="content" source="media/tutorial-csharp-overview/cognitive-search-enabled-book-website-2.png" alt-text="Screenshot of the sample app in a browser window.":::
2828

@@ -55,11 +55,11 @@ Create services and install the following software for your local development en
5555
- [C# Dev Tools extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csdevkit)
5656
- [Azure Static Web App extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurestaticwebapps)
5757

58-
This tutorial doesn't run the Azure Function API locally but if you intend to run it locally, install [azure-functions-core-tools](/azure/azure-functions/functions-run-local?tabs=linux%2ccsharp%2cbash#install-the-azure-functions-core-tools).
58+
This tutorial doesn't run the Azure Function API locally. If you want to run it locally, install [azure-functions-core-tools](/azure/azure-functions/functions-run-local?tabs=linux%2ccsharp%2cbash#install-the-azure-functions-core-tools).
5959

6060
## Fork and clone the search sample with git
6161

62-
Forking the sample repository is critical to be able to deploy the Static Web App. The web apps determine the build actions and deployment content based on your own GitHub fork location. Code execution in the Static Web App is remote, with Azure Static Web Apps reading from the code in your forked sample.
62+
To deploy the Static Web App, you need to fork the sample repository. The web apps use your GitHub fork location to decide the build actions and deployment content. Code execution in the Static Web App happens remotely, with Azure Static Web Apps reading the code from your forked sample.
6363

6464
1. On GitHub, fork the [azure-search-static-web-app repository](https://github.com/Azure-Samples/azure-search-static-web-app).
6565

@@ -79,7 +79,7 @@ Forking the sample repository is critical to be able to deploy the Static Web Ap
7979
cd azure-search-static-web-app
8080
```
8181

82-
1. Use the Visual Studio Code command, `code .` to open your forked repository. The remaining tasks are accomplished from Visual Studio Code, unless specified.
82+
1. Use the Visual Studio Code command, `code .` to open your forked repository. You accomplish the remaining tasks from Visual Studio Code, unless specified.
8383

8484
```bash
8585
code .

0 commit comments

Comments
 (0)