Skip to content

Commit 28c07ca

Browse files
committed
2 parents 2134f22 + 400e901 commit 28c07ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22

3-
<a href="https://travis-ci.org/basemkhirat/elasticsearch"><img src="https://travis-ci.org/basemkhirat/elasticsearch.svg" alt="Build Status"></a>
3+
<a href="https://travis-ci.org/basemkhirat/elasticsearch"><img src="https://travis-ci.org/basemkhirat/elasticsearch.svg?branch=master" alt="Build Status"></a>
44

55
<a href="https://packagist.org/packages/basemkhirat/elasticsearch"><img src="https://poser.pugx.org/basemkhirat/elasticsearch/v/stable.svg" alt="Latest Stable Version"></a>
66

@@ -220,7 +220,7 @@ $ php artisan es:indices:create my_index
220220

221221
#### Update indices defined in `es.php` config file
222222

223-
Note that updating operation updates indices setting, aliases and mapping and don't delete the indexed data.
223+
Note that updating operation updates indices setting, aliases and mapping and doesn't delete the indexed data.
224224

225225
```bash
226226
# Update all indices in config file.
@@ -479,7 +479,7 @@ ES::type("my_type")->whereBetween("id", [100, 150])->get();
479479
##### Where not clause
480480
```php
481481
ES::type("my_type")->whereNot("status", "published")->get();
482-
#or
482+
# or
483483
ES::type("my_type")->whereNot("status", "=", "published")->get();
484484
```
485485
##### Where not greater than

0 commit comments

Comments
 (0)