Skip to content

Commit ce8cc81

Browse files
committed
simplified the intro
1 parent f4f5c02 commit ce8cc81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/search/index-add-suggesters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ ms.date: 04/10/2020
1313

1414
# Create a suggester to enable autocomplete and suggestions in Azure Cognitive Search
1515

16-
In Azure Cognitive Search, "search-as-you-type" or typeahead functionality is based on a **suggester** construct that you add to a [search index](search-what-is-an-index.md). A suggester supports two search-as-you-type variants: *autocomplete*, which completes the term or phrase you are typing, and *suggestions* that return a short list of matching documents.
16+
In Azure Cognitive Search, "search-as-you-type" functionality is enabled through a **suggester** construct that you add to a [search index](search-what-is-an-index.md). A suggester supports two search experiences: *autocomplete*, which completes the term or phrase you are typing, and *suggestions* that return a short list of matching documents.
1717

18-
The following screenshot, from the [Create your first app in C#](tutorial-csharp-type-ahead-and-suggestions.md) sample, illustrates both experiences. Autocomplete anticipates what the user might type, finishing "tw" with "in" as the prospective search term. Suggestions are actual search results, each one representing a matching document. For suggestions, you can surface any part of a document that best describes the result. In this example, the suggestions are represented by the hotel name field.
18+
The following screenshot from [Create your first app in C#](tutorial-csharp-type-ahead-and-suggestions.md) illustrates both. Autocomplete anticipates what the user might type, finishing "tw" with "in" as the prospective search term. Suggestions are documents from the index that match the query. For suggestions, you can surface any part of a document that best describes the result. In this example, a result is represented by the hotel name field.
1919

2020
![Visual comparison of autocomplete and suggested queries](./media/index-add-suggesters/hotel-app-suggestions-autocomplete.png "Visual comparison of autocomplete and suggested queries")
2121

0 commit comments

Comments
 (0)