From 9abb24ab69fd53a9f71256f938008b06fb34eada Mon Sep 17 00:00:00 2001 From: Mackenzie Hauck Date: Sun, 22 Jul 2018 16:50:06 -0600 Subject: [PATCH] remove linefeed (trailing %0A) from two examples to fix parsing error --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0dd85a1..c7a6317 100644 --- a/README.md +++ b/README.md @@ -217,11 +217,11 @@ the following [url](http://localhost:3000/api/?q=barack+obama&nhits=20) in your By default this query is treated as `barack OR obama`. You can also search for documents that contains both term, by adding a `+` sign before the terms in your query. - http://localhost:3000/api/?q=%2Bbarack%20%2Bobama%0A&nhits=20 + http://localhost:3000/api/?q=%2Bbarack%20%2Bobama&nhits=20 Also, `-` makes it possible to remove documents the documents containing a specific term. - http://localhost:3000/api/?q=-barack%20%2Bobama%0A&nhits=20 + http://localhost:3000/api/?q=-barack%20%2Bobama&nhits=20 Finally tantivy handle phrase queries.