[stdlib] Fix comment of _ColorLiteralConvertible, NFC.

Swift SVN r31847
This commit is contained in:
Argyrios Kyrtzidis
2015-09-10 02:03:16 +00:00
parent 5ac9e39d61
commit 742f65c66b

View File

@@ -198,7 +198,7 @@ public protocol StringInterpolationConvertible {
#if SWIFT_ENABLE_OBJECT_LITERALS
/// Conforming types can be initialized with color literals (e.g.
/// `[#Color(colorLiteralRed: 1, blue: 0, green: 0, alpha: 1)#]`).
/// `[#Color(colorLiteralRed: 1, green: 0, blue: 0, alpha: 1)#]`).
public protocol _ColorLiteralConvertible {
init(colorLiteralRed: Float, green: Float, blue: Float, alpha: Float)
}