You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I could be wrong but I think the summary description for LowerCaseNamingConvention is incorrect, it says:
// Convert the string with underscores (this_is_a_test) or hyphens (this-is-a-test)
// to pascal case (ThisIsATest). Pascal case is the same as camel case, except the
// first letter is uppercase.
The text was updated successfully, but these errors were encountered:
What it actually looks like it does is almost exactly what it says. Except. It converts the result to lower case. I'll mark this as a bug and get to it eventually.
I could be wrong but I think the summary description for LowerCaseNamingConvention is incorrect, it says:
The text was updated successfully, but these errors were encountered: