Skip to content

Commit c59ca68

Browse files
committed
Modify the lowerCamelCase the Case of Enum.
1 parent 29ddcd8 commit c59ca68

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
enum Foo : Int {
2-
case A = 0
2+
case a = 0
33
}
44

55
enum Bar : UInt {
6-
case A = 0
7-
case B = 22
6+
case a = 0
7+
case b = 22
88
}
99

1010
enum Baz : UInt {
11-
case A = 0
11+
case a = 0
1212
}
1313

1414
enum Garply : String {
15-
case A = "A"
15+
case a = "A"
1616
}

0 commit comments

Comments
 (0)