Skip to content

Commit 9b028c1

Browse files
authored
Merge pull request #8024 from marmelab/8021-catch-train
[Doc] Fix few typos
2 parents 8752bd7 + 3f9b3d6 commit 9b028c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/Search.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This [Enterprise Edition](https://marmelab.com/ra-enterprise)<img class="icon" s
99

1010
![ra-search](https://marmelab.com/ra-enterprise/modules/assets/ra-search-demo.gif)
1111

12-
`<Search>` renders a global search input. It's designed to be integrated into the top `<AppBar>`.
12+
`<Search>` renders a global search input. It's designed to be integrated into the top `<AppBar>`.
1313

1414
It relies on the `dataProvider` to provide a `search()` method, so you can use it with any search engine (Lucene, ElasticSearch, Solr, Algolia, Google Cloud Search, and many others). And if you don't have a search engine, no problem! `<Search>` can also do the search across several resources via parallel `dataProvider.getList()` queries.
1515

@@ -53,7 +53,7 @@ import { MyAppbar } from "./MyAppBar";
5353
export const MyLayout = (props) => <Layout {...props} appBar={MyAppbar} />;
5454
```
5555

56-
Finally, include that custom layout in the `<Admin>`. You'll also need to setup the ì18nProvider`, as the `ra-search` package comes with some new translations.
56+
Finally, include that custom layout in the `<Admin>`. You'll also need to setup the `i18nProvider`, as the `ra-search` package comes with some new translations.
5757

5858
```jsx
5959
// in src/Admin.ts
@@ -72,7 +72,7 @@ export const App = () => (
7272
);
7373
```
7474

75-
Your `dataProvider` should support the `search()` method. Check [the `ra-search` documentation](https://marmelab.com/ra-enterprise/modules/ra-search) to learn its i,nput and output interface, as well as tricks to use `dataProvider.search()` without a search engine.
75+
Your `dataProvider` should support the `search()` method. Check [the `ra-search` documentation](https://marmelab.com/ra-enterprise/modules/ra-search) to learn its input and output interface, as well as tricks to use `dataProvider.search()` without a search engine.
7676

7777
## Props
7878

0 commit comments

Comments
 (0)