We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80056e2 commit d61830bCopy full SHA for d61830b
stdlib/public/Darwin/Foundation/PlistEncoder.swift
@@ -283,7 +283,7 @@ fileprivate struct _PlistKeyedEncodingContainer<K : CodingKey> : KeyedEncodingCo
283
let containerKey = key.stringValue
284
let existingContainer = self.container[containerKey]
285
precondition(existingContainer is NSMutableArray?,
286
- "Attempt to request for unkeyed container with the key that previously keyed container already requested.")
+ "Attempt to request for unkeyed container with the key that previously keyed container already requested.")
287
let array = existingContainer as? NSMutableArray ?? NSMutableArray()
288
self.container[containerKey] = array
289
0 commit comments