Skip to content

Commit

Permalink
Gardening: Spaces into tabs in Named Color toggle function.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhealy committed Mar 28, 2016
1 parent f96d64d commit 48569b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/Color/Named.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ extension Color {
public var additive: UInt8 { return self == .Bright ? 60 : 0 }

public mutating func toggle() {
switch self {
case .Bright: self = .NonBright
case .NonBright: self = .Bright
}
switch self {
case .Bright: self = .NonBright
case .NonBright: self = .Bright
}
}

}
Expand Down

0 comments on commit 48569b9

Please sign in to comment.