File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -222,11 +222,11 @@ Methods to Change Case
222
222
u('foo BAR bάz')->localeUpper('el'); // 'FOO BAR BAZ'
223
223
224
224
// changes all graphemes/code points to "title case"
225
- u('foo ijssel ')->title(); // 'Foo ijssel'
225
+ u('foo ijssel')->title(); // 'Foo ijssel'
226
226
u('foo ijssel')->title(true); // 'Foo Ijssel'
227
227
// 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'
230
230
231
231
// changes all graphemes/code points to camelCase
232
232
u('Foo: Bar-baz.')->camel(); // 'fooBarBaz'
You can’t perform that action at this time.
0 commit comments