Skip to content

Commit d61830b

Browse files
committed
Change the tab character to be space for the wrong indentation
1 parent 80056e2 commit d61830b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/Darwin/Foundation/PlistEncoder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ fileprivate struct _PlistKeyedEncodingContainer<K : CodingKey> : KeyedEncodingCo
283283
let containerKey = key.stringValue
284284
let existingContainer = self.container[containerKey]
285285
precondition(existingContainer is NSMutableArray?,
286-
"Attempt to request for unkeyed container with the key that previously keyed container already requested.")
286+
"Attempt to request for unkeyed container with the key that previously keyed container already requested.")
287287
let array = existingContainer as? NSMutableArray ?? NSMutableArray()
288288
self.container[containerKey] = array
289289

0 commit comments

Comments
 (0)