From 50269fdcddc3954f16a33d80d3031e8dc8099918 Mon Sep 17 00:00:00 2001 From: Vitaliy Tim Date: Tue, 17 Apr 2018 19:04:40 +0300 Subject: [PATCH] fixes issue #18 (conflict with Swift's append(_:) method) --- Sources/String+Attributer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/String+Attributer.swift b/Sources/String+Attributer.swift index 36846b6..efbce3a 100644 --- a/Sources/String+Attributer.swift +++ b/Sources/String+Attributer.swift @@ -295,7 +295,7 @@ public extension String { -parameter string: The string that will be added */ - public func append(_ string: String) -> Attributer { + public func append(string: String) -> Attributer { return attributer.append(string) }