diff --git a/README.md b/README.md index 7d18892..9d8ce66 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,6 @@ Extension method / operator | Description | Example == (operator) | Whether the field contains the value | r => r.Name == "foo" != (operator) | Whether the field does not contains the value | r => r.Name != "foo" Contains(term) | Whether the field contains the value | r => r.Name.Contains("foo") -Contains(term, fuzzy) | Whether the field contains the value with Fuzzy enabled | r => r.Name.Contains("foo", 0.8) ContainsAny(term) | Whether the field contains any of the values | r => r.Name.ContainsAny("foo", "bar", "etc") ContainsAll(term) | Whether the field contains all of the values | r => r.Name.ContainsAll("foo", "bar", "etc") All these support NOT (!)