adambard / adambard/learnxinyminutes-docs
[kotlin/en] To demonstrate naming conventions, the example enum values should be multicharacter
Open
- Dominant language
- Markdown
- Stars
- 12.3k
- Forks
- 3.7k
- Avg merge
- 13h 10m
- Merged PRs (30d)
- 6
Description
Current:
```
enum class EnumExample {
A, B, C // Enum constants are separated with commas.
}
```
Suggested:
```
enum class EnumExample {
ALPHA, BETA, GAMMA // Enum constants are separated with commas.
}
```
Contributor guide
Assessment
This issue has not been assessed yet.