Skip to content

Commit 296ee9d

Browse files
committed
Tweaks
1 parent 36d6518 commit 296ee9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/string.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,11 +222,11 @@ Methods to Change Case
222222
u('foo BAR bάz')->localeUpper('el'); // 'FOO BAR BAZ'
223223

224224
// changes all graphemes/code points to "title case"
225-
u('foo ijssel ')->title(); // 'Foo ijssel'
225+
u('foo ijssel')->title(); // 'Foo ijssel'
226226
u('foo ijssel')->title(true); // 'Foo Ijssel'
227227
// changes all graphemes/code points to "title case" according to locale-specific case mappings
228-
u('foo ijssel')->localeTitle('en'); // 'Foo ijssel'
229-
u('foo ijssel')->localeTitle('nl'); // 'Foo IJssel'
228+
u('foo ijssel')->localeTitle('en'); // 'Foo ijssel'
229+
u('foo ijssel')->localeTitle('nl'); // 'Foo IJssel'
230230

231231
// changes all graphemes/code points to camelCase
232232
u('Foo: Bar-baz.')->camel(); // 'fooBarBaz'

0 commit comments

Comments
 (0)