From 7c1a346489d103bc116187badd5b1213221efb32 Mon Sep 17 00:00:00 2001 From: Matthias Wilhelm Date: Wed, 4 May 2022 08:01:21 +0200 Subject: [PATCH] Improve text --- src/plugins/discover/README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/plugins/discover/README.md b/src/plugins/discover/README.md index 7beb0d86df6297..6537a830c46a94 100644 --- a/src/plugins/discover/README.md +++ b/src/plugins/discover/README.md @@ -9,23 +9,24 @@ Contains the Discover application and the saved search embeddable. Contains all the client-only code. When you initially load Discover, [public/application/main](./public/application/main) is executed and displayed. * **[/application](./public/application)** \ -One folder for every "route", each folder contains files and folders related only to this route - * **[/context](./public/application/context)** (Also known of "Surrounding documents") - * **[/doc](./public/application/doc)** (Also known as "Single document") +One folder for every "route", each folder contains files and folders related only to this route. + * **[/context](./public/application/context)** (Also known as "Surrounding documents" - historically this has been a separate plugin) + * **[/doc](./public/application/doc)** (Also known as "Single document" - historically this has been a separate plugin) * **[/main](./public/application/main)** (Main part of Discover containing the document table) - * **[/not_found](./public/application/not_found)** (Rendering the fallback route) + * **[/not_found](./public/application/not_found)** (Rendered when a route can't be found) * **[/view_alert](./public/application/view_alert)** (Forwarding links in alert notifications) * **[/components](./public/components)** (All React components used in more than just one app) -* **[/embeddable](./public/embeddable)** (Contains the code related to the saved search embeddable) -* **[/services](./public/services)** (Everything we consider services either for external or internal use) -* **[/utils](./public/utils)** (All utility functions used across more than one application +* **[/embeddable](./public/embeddable)** (Code related to the saved search embeddable, rendered on dashboards) +* **[/services](./public/services)** (Services either for external or internal use) +* **[/utils](./public/utils)** (All utility functions used across more than one application) ### [src/plugins/discover/server](./server) Contains all the server-only code. ### [src/plugins/discover/common](./common)) -Contains all code shared by client and server + +Contains all code shared by client and server.