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
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'
You can’t perform that action at this time.
0 commit comments