Skip to content

Commit 3056a56

Browse files
authored
docs: fix incorrect query constraint (#904)
1 parent bb303ca commit 3056a56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_includes/android/queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ You can use `whereFullText` for efficient search capabilities. Text indexes are
230230
```java
231231
// Finds barbecue sauces that start with 'Big Daddy's'.
232232
ParseQuery<ParseObject> query = ParseQuery.getQuery("BarbecueSauce");
233-
query.whereFullText("name", "Big Daddy's");
233+
query.whereFullText("name", "bbq");
234234
```
235235

236236
The above example will match any `BarbecueSauce` objects where the value in the "name" String key contains "bbq". For example, both "Big Daddy's BBQ", "Big Daddy's bbq" and "Big BBQ Daddy" will match.

0 commit comments

Comments
 (0)