Hello, The following enum
enum X {
case A_B
}
is translated to:
enum X {
case a_b
}
which is fine.
But:
enum X {
case AXX_BYY
}
is migrated to:
enum X {
case axx_BYY
}
Shouldn’t it be rather:
enum X {
case axx_byy
}
Thanks,
Stéphane
_______________________________________________ swift-users mailing list [email protected] https://lists.swift.org/mailman/listinfo/swift-users
