Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1a9e4f4

Browse filesBrowse files
Fix punctuation (#10492)
1 parent 11cbd00 commit 1a9e4f4
Copy full SHA for 1a9e4f4

File tree

Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed

‎strings.md

Copy file name to clipboardExpand all lines: strings.md
+3-3Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.