Skip to content

Commit af05f1c

Browse files
committed
typos
1 parent 28a7787 commit af05f1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/search/includes/quickstarts/search-get-started-vector-dotnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This quickstart uses `DefaultAzureCredential`, which simplifies authentication i
4444

4545
This repo has .NET code examples for several articles each in a separate subfolder.
4646

47-
1. Open the subfolder `quickstart-Vector-Search` in Visual Studio Code, or double click the `.sln` file to opn the solution in Visual Studio.
47+
1. Open the subfolder `quickstart-Vector-Search` in Visual Studio Code, or double click the `.sln` file to open the solution in Visual Studio.
4848

4949
1. Open the `appsettings.json` files in the `VectorSearchExamples` and `VectorSearchCreatePopulateIndex` folders. Update the following values:
5050

@@ -71,7 +71,7 @@ The following code uploads the JSON formatted documents in the `hotel-samples.js
7171
7272
:::code language="csharp" source="~/azure-search-dotnet-samples/quickstart-vector-search/vectorsearchcreatepopulateindex/program.cs" id="UploadDocs":::
7373
74-
After you run the projecment is printed below it:
74+
After you run the project, the following output is printed:
7575
7676
```output
7777
Key: 1, Succeeded: True
@@ -148,7 +148,7 @@ You can add filters, but the filters are applied to the nonvector content in you
148148
Score: 0.57902366, HotelId: 2, HotelName: Old Century Hotel, Tags: poolfree wifiair conditioningconcierge
149149
```
150150

151-
The query was the same as the previous [single vector search example](#single-vector-search), but it includes a post-processing exclusion filter and returns only the three hotels that have free Wi-Fi.
151+
The query was the same as the previous [single vector search example](#single-vector-search), but it includes a post-processing exclusion filter and returns only the two hotels that have free Wi-Fi.
152152

153153
1. The next filter example uses a **geo filter**. In the `Program.cs` file of the `VectorSearchExamples` folder, uncomment the method call `SearchExamples.SingleSearchWithGeoFilter(searchClient, vectorizedResult);`. This method executes the following search function in the `SearchExamples.cs` class:
154154

0 commit comments

Comments
 (0)