[swift-users] Swift 3 preview 1 in Xcode 8 and Lowercase enum cases

Stéphane Lizeray stephane at lizeray.net
Tue Jun 21 16:48:20 CDT 2016


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

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.swift.org/pipermail/swift-users/attachments/20160621/a9348645/attachment.html>


More information about the swift-users mailing list