We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d6518 commit 296ee9dCopy full SHA for 296ee9d
components/string.rst
@@ -222,11 +222,11 @@ Methods to Change Case
222
u('foo BAR bάz')->localeUpper('el'); // 'FOO BAR BAZ'
223
224
// changes all graphemes/code points to "title case"
225
- u('foo ijssel ')->title(); // 'Foo ijssel'
+ u('foo ijssel')->title(); // 'Foo ijssel'
226
u('foo ijssel')->title(true); // 'Foo Ijssel'
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'
+ u('foo ijssel')->localeTitle('en'); // 'Foo ijssel'
+ u('foo ijssel')->localeTitle('nl'); // 'Foo IJssel'
230
231
// changes all graphemes/code points to camelCase
232
u('Foo: Bar-baz.')->camel(); // 'fooBarBaz'
0 commit comments