From 2ea5804ebd09c0fe41724aacc9b6a33234ce97c4 Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Mon, 25 Mar 2024 19:42:45 +0100 Subject: [PATCH] Use lower case table name in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e2846ba..d38bdf7 100644 --- a/README.md +++ b/README.md @@ -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). \ No newline at end of file +For complete examples, see [/examples](./examples).