Skip to content

Commit b450f92

Browse files
bors[bot]donno2048
andauthored
Merge #1020
1020: Fix grammar issues in README r=bidoubiwa a=donno2048 Co-authored-by: Elisha Hollander <[email protected]>
2 parents 3281cc7 + febe996 commit b450f92

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ NB: you can also download MeiliSearch from **Homebrew** or **APT**.
7272

7373
### Import <!-- omit in toc -->
7474

75-
Depending on the environment on which you are using MeiliSearch, imports may differ.
75+
Depending on the environment in which you are using MeiliSearch, imports may differ.
7676

7777
#### Import Syntax <!-- omit in toc -->
7878

79-
Usage in a ES module environment:
79+
Usage in an ES module environment:
8080

8181
```javascript
8282
import { MeiliSearch } from 'meilisearch'
@@ -311,7 +311,7 @@ This repository also contains [more examples](./examples).
311311

312312
## ⚙️ Development Workflow and Contributing
313313

314-
Any new contribution is more than welcome in this project!
314+
Any new contribution is more than welcome to this project!
315315

316316
If you want to know more about the development workflow or want to contribute, please visit our [contributing guidelines](/CONTRIBUTING.md) for detailed instructions!
317317

@@ -323,7 +323,7 @@ If you want to know more about the development workflow or want to contribute, p
323323

324324
`client.index<T>('xxx').search(query: string, options: SearchParams = {}, config?: Partial<Request>): Promise<SearchResponse<T>>`
325325

326-
- Make a search request using GET method (slower than the search method):
326+
- Make a search request using the GET method (slower than the search method):
327327

328328
`client.index<T>('xxx').searchGet(query: string, options: SearchParams = {}, config?: Partial<Request>): Promise<SearchResponse<T>>`
329329

@@ -333,7 +333,7 @@ If you want to know more about the development workflow or want to contribute, p
333333

334334
`client.getIndexes(): Promise<IndexResponse[]>`
335335

336-
- Create new index:
336+
- Create a new index:
337337

338338
`client.createIndex<T>(uid: string, options?: IndexOptions): Promise<Index<T>>`
339339

@@ -345,7 +345,7 @@ If you want to know more about the development workflow or want to contribute, p
345345

346346
`client.getIndex<T>(uid: string): Promise<Index<T>>`
347347

348-
- Get or create index if it does not exist
348+
- Get or create an index if it does not exist
349349

350350
`client.getOrCreateIndex<T>(uid: string, options?: IndexOptions): Promise<Index<T>>`
351351

0 commit comments

Comments
 (0)