Skip to content

Commit

Permalink
Consistent case in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaong committed Oct 26, 2023
1 parent 2449c19 commit e4e6d0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MiniSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1161,15 +1161,15 @@ export default class MiniSearch<T = any> {
*
* ```javascript
* // Return search results for all documents
* minisearch.search(MiniSearch.wildcard)
* miniSearch.search(MiniSearch.wildcard)
* ```
*
* Note that search options such as `filter` and `boostDocument` are still
* applied, influencing which results are returned, and their order:
*
* ```javascript
* // Return search results for all documents in the 'fiction' category
* minisearch.search(MiniSearch.wildcard, {
* miniSearch.search(MiniSearch.wildcard, {
* filter: (result) => result.category === 'fiction'
* })
* ```
Expand Down

0 comments on commit e4e6d0b

Please sign in to comment.