GenieFramework / GenieFramework/Inflector.jl

Words ending with -tch are incorrectly pluralised

Open
#2 0 comments 0 reactions 0 assignees View on GitHub
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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.