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 f464526 commit b5f54a6Copy full SHA for b5f54a6
string.rst
@@ -234,7 +234,7 @@ Methods to Change Case
234
u('Foo: Bar-baz.')->snake(); // 'foo_bar_baz'
235
// changes all graphemes/code points to kebab-case
236
u('Foo: Bar-baz.')->kebab(); // 'foo-bar-baz'
237
- // changes all graphemes/code points to pascal-case
+ // changes all graphemes/code points to PascalCase
238
u('Foo: Bar-baz.')->pascal(); // 'FooBarBaz'
239
// other cases can be achieved by chaining methods, e.g. :
240
u('Foo: Bar-baz.')->camel()->upper(); // 'FOOBARBAZ'
0 commit comments