GenieFramework / GenieFramework/Inflector.jl
Words ending with -tch are incorrectly pluralised
Open
- Dominant language
- Julia
- Stars
- 3
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
Words ending with "-tch" are pluralised to "-tchs", but they should generally be "-tches".
```
julia> using Inflector
julia> Inflector.to_plural("witch")
"witchs"
julia> Inflector.to_plural("hutch")
"hutchs"
```
Expected behaviour:
```
julia> Inflector.to_plural("witch")
"witches"
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Start at the Inflector.to_plural entry point and reproduce the issue with the Julia examples for “witch” and “hutch.” Update the pluralization rule for words ending in “-tch,” then verify that those examples produce the expected “-tches” forms.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- julia
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 55/100