From 0d282e3cc584ad2389a8c26e1c2f832e412561de Mon Sep 17 00:00:00 2001 From: meili-bot <74670311+meili-bot@users.noreply.github.com> Date: Wed, 26 Jan 2022 16:33:16 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4df258585..cbd9f4c35 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ ## Introduction -This repository contains the core engine used in [MeiliSearch]. +This repository contains the core engine used in [meilisearch]. -It contains a library that can manage one and only one index. MeiliSearch +It contains a library that can manage one and only one index. meilisearch manages the multi-index itself. Milli is unable to store updates in a store: it is the job of something else above and this is why it is only able to process one update at a time. @@ -65,5 +65,5 @@ To enable the hook, run the following command from the root of the project: cp script/pre-commit .git/hooks/pre-commit ``` -[MeiliSearch]: https://github.com/MeiliSearch/MeiliSearch +[meilisearch]: https://github.com/meilisearch/meilisearch [flamegraph]: https://github.com/flamegraph-rs/flamegraph From de808a391aeaf5fc9e195fc90ee55505ffff55b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar?= Date: Wed, 26 Jan 2022 17:47:26 +0100 Subject: [PATCH 2/3] Replace meilisearch by Meilisearch --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cbd9f4c35..aa8770159 100644 --- a/README.md +++ b/README.md @@ -6,9 +6,9 @@ ## Introduction -This repository contains the core engine used in [meilisearch]. +This repository contains the core engine used in [Meilisearch]. -It contains a library that can manage one and only one index. meilisearch +It contains a library that can manage one and only one index. Meilisearch manages the multi-index itself. Milli is unable to store updates in a store: it is the job of something else above and this is why it is only able to process one update at a time. @@ -65,5 +65,5 @@ To enable the hook, run the following command from the root of the project: cp script/pre-commit .git/hooks/pre-commit ``` -[meilisearch]: https://github.com/meilisearch/meilisearch +[Meilisearch]: https://github.com/meilisearch/meilisearch [flamegraph]: https://github.com/flamegraph-rs/flamegraph From 0f213f22029f234a5a630e3dcea24f165e27e5c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar?= Date: Wed, 26 Jan 2022 17:49:55 +0100 Subject: [PATCH 3/3] Replace MeiliSearch by Meilisearch --- filter-parser/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter-parser/README.md b/filter-parser/README.md index dfbc03d07..b4ddda3d3 100644 --- a/filter-parser/README.md +++ b/filter-parser/README.md @@ -1,6 +1,6 @@ # Filter parser -This workspace is dedicated to the parsing of the MeiliSearch filters. +This workspace is dedicated to the parsing of the Meilisearch filters. Most of the code and explanation are in the [`lib.rs`](./src/lib.rs). Especially, the BNF of the filters at the top of this file.