1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-20 21:42:14 +02:00

swift | fix style guidelines

This commit is contained in:
Damian Rzeszot
2017-10-09 12:01:15 +02:00
parent 62d4b1483b
commit d01e5242e1
8 changed files with 48 additions and 48 deletions

View File

@@ -518,20 +518,20 @@ if let circle = myEmptyCircle {
// They can contain methods like classes.
enum Suit {
case Spades, Hearts, Diamonds, Clubs
case spades, hearts, diamonds, clubs
func getIcon() -> String {
switch self {
case .Spades: return "♤"
case .Hearts: return "♡"
case .Diamonds: return "♢"
case .Clubs: return "♧"
case .spades: return "♤"
case .hearts: return "♡"
case .diamonds: return "♢"
case .clubs: return "♧"
}
}
}
// Enum values allow short hand syntax, no need to type the enum type
// when the variable is explicitly declared
var suitValue: Suit = .Hearts
var suitValue: Suit = .hearts
// String enums can have direct raw value assignments
// or their raw values will be derived from the Enum field