Skip to content

Commit

Permalink
Fixed a small typo. (#2168)
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Prickett authored Jun 30, 2022
1 parent e1c13f8 commit 5fefcca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/search-hashes.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async function searchHashes() {

// Perform a search query, find all the dogs... sort by age, descending.
// Documentation: https://oss.redis.com/redisearch/Commands/#ftsearch
// Query synatax: https://oss.redis.com/redisearch/Query_Syntax/
// Query syntax: https://oss.redis.com/redisearch/Query_Syntax/
const results = await client.ft.search(
'idx:animals',
'@species:{dog}',
Expand Down Expand Up @@ -88,4 +88,4 @@ async function searchHashes() {
await client.quit();
}

searchHashes();
searchHashes();

0 comments on commit 5fefcca

Please sign in to comment.