diff options
author | Damian Rzeszot <damian.rzeszot@gmail.com> | 2017-10-09 12:02:29 +0200 |
---|---|---|
committer | Damian Rzeszot <damian.rzeszot@gmail.com> | 2017-10-09 08:04:01 +0200 |
commit | 9a9e52b54bf9bc6ebeefc996452f5944a234557f (patch) | |
tree | 30916f02c2efb69ce374cd8aa8de863b7613260b /swift.html.markdown | |
parent | d01e5242e16c522becc1b04f9692d2556f94c4f1 (diff) |
swift | fix style guidelines
Diffstat (limited to 'swift.html.markdown')
-rw-r--r-- | swift.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/swift.html.markdown b/swift.html.markdown index 577fa559..a3b33e25 100644 --- a/swift.html.markdown +++ b/swift.html.markdown @@ -536,10 +536,10 @@ var suitValue: Suit = .hearts // String enums can have direct raw value assignments // or their raw values will be derived from the Enum field enum BookName: String { - case John - case Luke = "Luke" + case john + case luke = "Luke" } -print("Name: \(BookName.John.rawValue)") +print("Name: \(BookName.john.rawValue)") // Enum with associated Values enum Furniture { |