adambard / adambard/learnxinyminutes-docs
[kotlin/en] To demonstrate naming conventions, the example enum values should be multicharacter
未关闭
- 主要语言
- Markdown
- 星标
- 12.3k
- 派生
- 3.7k
- 平均合并
- 13 小时 10 分钟
- 30 天内合并 PR
- 6
描述
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.
}
```
贡献指南
评估
这个 Issue 还没有评估数据。