Skip to content

Commit 8c2eb94

Browse files
authored
Update search-query-fuzzy.md
Updating doc with correct example of how AND can support expressions instead of phrases, that are not supported
1 parent f7e176c commit 8c2eb94

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/search/search-query-fuzzy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: HeidiSteen
88
ms.author: heidist
99
ms.service: cognitive-search
1010
ms.topic: how-to
11-
ms.date: 06/22/2022
11+
ms.date: 04/20/2023
1212
---
1313
# Fuzzy search to correct misspellings and typos
1414

@@ -26,7 +26,7 @@ A match succeeds if the discrepancies are limited to two or fewer edits, where a
2626

2727
In Azure Cognitive Search:
2828

29-
+ Fuzzy query applies to whole terms, but you can support phrases through AND constructions. For example, "Unviersty~ of~ "Wshington~" would match on "University of Washington".
29+
+ Fuzzy query applies to whole terms. Phrases aren't supported directly but you can specify a fuzzy match on each term of a multi-part phrase through AND constructions. For example, `search=dr~ AND cleanin~`. This query expression finds matches on "dry cleaning".
3030

3131
+ The default distance of an edit is 2. A value of `~0` signifies no expansion (only the exact term is considered a match), but you could specify `~1` for one degree of difference, or one edit.
3232

@@ -143,4 +143,4 @@ The point of this expanded example is to illustrate the clarity that hit highlig
143143
+ [How full text search works in Azure Cognitive Search (query parsing architecture)](search-lucene-query-architecture.md)
144144
+ [Search explorer](search-explorer.md)
145145
+ [How to query in .NET](./search-get-started-dotnet.md)
146-
+ [How to query in REST](./search-get-started-powershell.md)
146+
+ [How to query in REST](./search-get-started-powershell.md)

0 commit comments

Comments
 (0)