Skip to content

Commit 1a9e4f4

Browse files
Fix punctuation (#10492)
1 parent 11cbd00 commit 1a9e4f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

strings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ $url = Str::chopEnd('laravel.com/index.php', ['/index.html', '/index.php']);
470470
<a name="method-str-contains"></a>
471471
#### `Str::contains()` {.collection-method}
472472

473-
The `Str::contains` method determines if the given string contains the given value. By default this method is case sensitive:
473+
The `Str::contains` method determines if the given string contains the given value. By default, this method is case sensitive:
474474

475475
```php
476476
use Illuminate\Support\Str;
@@ -526,7 +526,7 @@ $containsAll = Str::containsAll('This is my name', ['MY', 'NAME'], ignoreCase: t
526526
<a name="method-str-doesnt-contain"></a>
527527
#### `Str::doesntContain()` {.collection-method}
528528

529-
The `Str::doesntContain` method determines if the given string doesn't contain the given value. By default this method is case sensitive:
529+
The `Str::doesntContain` method determines if the given string doesn't contain the given value. By default, this method is case sensitive:
530530

531531
```php
532532
use Illuminate\Support\Str;
@@ -2089,7 +2089,7 @@ $url = Str::of('http://laravel.com')->chopEnd(['.com', '.io']);
20892089
<a name="method-fluent-str-contains"></a>
20902090
#### `contains` {.collection-method}
20912091

2092-
The `contains` method determines if the given string contains the given value. By default this method is case sensitive:
2092+
The `contains` method determines if the given string contains the given value. By default, this method is case sensitive:
20932093

20942094
```php
20952095
use Illuminate\Support\Str;

0 commit comments

Comments
 (0)