Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pluralize with LetterCasing.AllCaps returns plural with lower case "s" #1293

Open
eddievelasquez opened this issue Sep 5, 2023 · 1 comment

Comments

@eddievelasquez
Copy link

The expectation would be that the appended "s" when LetterCasing.AllCaps is used would be an uppercase "S", not lowercase "s".

For example, the expectation for:

"singular type name".Humanize( LetterCasing.AllCaps ).Pluralize()

would be "SINGULAR TYPE NAMES"; however, this code emits "SINGULAR TYPE NAMEs"

Notice the lowercase "s" at the end.

@manoj8861
Copy link

It will work when i use it as :

"singular type name".Pluralize().Humanize( LetterCasing.AllCaps)

Is it intended that way or this should capitalize even if pluralize is called after humanizing?. Please confirm.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants