From 48569b93da9cf06f58b202f64d15154f3daf084d Mon Sep 17 00:00:00 2001 From: "J.D. Healy" Date: Mon, 28 Mar 2016 12:12:34 -0400 Subject: [PATCH] Gardening: Spaces into tabs in Named Color toggle function. --- Source/Color/Named.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Color/Named.swift b/Source/Color/Named.swift index 288213ac..25b71ef7 100644 --- a/Source/Color/Named.swift +++ b/Source/Color/Named.swift @@ -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 + } } }