Skip to content
This repository was archived by the owner on Nov 4, 2021. It is now read-only.

Commit f1ff1ee

Browse files
authored
Merge pull request #3 from mtdavidson/patch-1
Fix File Spelling
2 parents e6949a0 + d14c226 commit f1ff1ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ To create a search rule use the command:
267267
php artisan make:search-rule MySearchRule
268268
```
269269

270-
In the file `app/MySaerchRule.php` you will find a class definition:
270+
In the file `app/MySearchRule.php` you will find a class definition:
271271

272272
```php
273273
<?php
@@ -364,4 +364,4 @@ whereExists($field) | whereExists('unemployed') | Checks if a value is defined.
364364
whereNotExists($field) | whereNotExists('unemployed') | Checks if a value isn't defined.
365365
whereRegexp($field, $value, $flags = 'ALL') | whereRegexp('name.raw', 'A.+') | Filters records according to a given regular expression. [Here](https://www.elastic.co/guide/en/elasticsearch/reference/5.2/query-dsl-regexp-query.html#regexp-syntax) you can find more about syntax.
366366

367-
In most cases it's better to use raw fields to filter records, i.e. not analyzed fields.
367+
In most cases it's better to use raw fields to filter records, i.e. not analyzed fields.

0 commit comments

Comments
 (0)