From f04c7875d1c3ae3c4821d66c9fd60968b4fdda5e Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 8 Aug 2023 09:50:52 -0500 Subject: [PATCH] updated comment Signed-off-by: Matt Bruce --- VDS/Classes/ColorConfiguration.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/VDS/Classes/ColorConfiguration.swift b/VDS/Classes/ColorConfiguration.swift index a7cf2673..317a16d3 100644 --- a/VDS/Classes/ColorConfiguration.swift +++ b/VDS/Classes/ColorConfiguration.swift @@ -72,11 +72,11 @@ public protocol KeyColorConfigurable: ObjectColorable { extension KeyColorConfigurable { - /// Generic Method to set a KeyColorConfiguration with the parameters given + /// Generic Method to set a KeyColorConfiguration with the parameters given. /// - Parameters: - /// - lightColor: Color used for a light - /// - darkColor: Color used for a dark - /// - key: <#key description#> + /// - lightColor: Color used for a light. + /// - darkColor: Color used for a dark. + /// - key: The key that you want to filter off of. public func setSurfaceColors(_ lightColor: UIColor, _ darkColor: UIColor, forKey key: KeyType) { keyColors.append(.init(key: key, surfaceConfig: .init(lightColor, darkColor))) }