Skip to content

Commit

Permalink
Use lower case table name in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Mar 25, 2024
1 parent 08ab536 commit 2ea5804
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use diesel_full_text_search::*;

let search = "bar";

let query = Foo::table.filter(to_tsvector(Foo::description).matches(to_tsquery(search)));
let query = foo::table.filter(to_tsvector(Foo::description).matches(to_tsquery(search)));
```

For complete examples, see [/examples](./examples).
For complete examples, see [/examples](./examples).

0 comments on commit 2ea5804

Please sign in to comment.