diff --git a/docs/features/search/concepts.md b/docs/features/search/concepts.md index 2af2e7e3a3..5da7c9c58f 100644 --- a/docs/features/search/concepts.md +++ b/docs/features/search/concepts.md @@ -26,8 +26,8 @@ Backstage Search isn't a search engine itself, rather, it provides an interface between your Backstage instance and a Search Engine of your choice. More concretely, a `SearchEngine` is an interface whose concrete implementations facilitate communication with different search engines (like ElasticSearch, -Lunr, Solr, etc). This abstraction exists in order to support your organization's -needs. +Lunr, Solr, etc). This abstraction exists in order to support your +organization's needs. Out of the box, Backstage Search comes pre-packaged with an in-memory search engine implementation built on top of Lunr. @@ -99,7 +99,7 @@ components, which are all wired up using a search context. Each search experience's context consists of details like a search term, filters, types, results, and a page cursor for handling pagination. Different -components use this context in different ways, for example the `` +components use this context in different ways. For example, the `` can set the search term, `` components can set filters, and search results can be displayed using the `` component. diff --git a/docs/features/search/getting-started.md b/docs/features/search/getting-started.md index 42b0cdb2c5..7408d69193 100644 --- a/docs/features/search/getting-started.md +++ b/docs/features/search/getting-started.md @@ -253,7 +253,7 @@ an example: Backstage Search isn't a search engine itself, rather, it provides an interface between your Backstage instance and a [Search Engine](./concepts.md#search-engines) of your choice. Currently, we only -support one, in-memory search Engine called Lunr. It can be instantiated like +support one, an in-memory search Engine called Lunr. It can be instantiated like this: ```typescript