Skip to content

Commit a2624d4

Browse files
committed
Docs fixes
1 parent 72102ae commit a2624d4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ documentation.
124124
<tr>
125125
<td>[tidy](#tidy)</td>
126126
<td>[titleize](#titleize-array-ignore)</td>
127-
<td>[toAscii](#toascii)</td>
127+
<td>[toAscii](#toascii-string-locale--en--bool-removeunsupported--true-)</td>
128128
<td>[toBoolean](#toboolean)</td>
129129
</tr>
130130
<tr>
@@ -436,7 +436,7 @@ default, the comparison is case-sensitive, but can be made insensitive by
436436
setting $caseSensitive to false.
437437

438438
```php
439-
s('fòôbàř')->endsWith('bàř', true); // true
439+
s('fòôbàř')->endsWith('bàř'); // true
440440
```
441441

442442
##### endsWithAny(string[] $substrings [, boolean $caseSensitive = true ])
@@ -446,7 +446,7 @@ By default, the comparison is case-sensitive, but can be made insensitive
446446
by setting $caseSensitive to false.
447447

448448
```php
449-
s('fòôbàř')->endsWith(['bàř', 'baz'], true); // true
449+
s('fòôbàř')->endsWithAny(['bàř', 'baz']); // true
450450
```
451451

452452
##### ensureLeft(string $substring)
@@ -859,7 +859,7 @@ otherwise. By default the comparison is case-sensitive, but can be made
859859
insensitive by setting $caseSensitive to false.
860860

861861
```php
862-
s('FÒÔbàřbaz')->startsWith(['fòô', 'bàř'], false); // true
862+
s('FÒÔbàřbaz')->startsWithAny(['fòô', 'bàř'], false); // true
863863
```
864864

865865
##### stripWhitespace()

0 commit comments

Comments
 (0)