At the moment Keyword segregate between lower and upper case. However it does not take digits into consideration, thus the following keyword are not treated as identical to each other:
Keyword a = Keyword.of("GH844"); // produce "gh-844"
Keyword b = Keyword.of("gh844"); // produce "gh844"
This change request is to add digits segregation into keyword init logic.
At the moment
Keyword
segregate between lower and upper case. However it does not take digits into consideration, thus the following keyword are not treated as identical to each other:This change request is to add digits segregation into keyword init logic.