Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -3053,7 +3053,7 @@ The `remove` method removes the given value or array of values from the string:
```php
use Illuminate\Support\Str;

$string = Str::of('Arkansas is quite beautiful!')->remove('quite');
$string = Str::of('Arkansas is quite beautiful!')->remove('quite ');

// Arkansas is beautiful!
```
Expand Down Expand Up @@ -3567,7 +3567,7 @@ use Illuminate\Support\Str;

$string = Str::of('Foo Bar')->ucsplit();

// collect(['Foo', 'Bar'])
// collect(['Foo ', 'Bar'])
```

<a name="method-fluent-str-unwrap"></a>
Expand Down