@@ -471,7 +471,7 @@ public protocol KeyedEncodingContainerProtocol {
471
471
forKey key: Key
472
472
) -> UnkeyedEncodingContainer
473
473
474
- /// Stores a new nested container for the default `super` key and returns A
474
+ /// Stores a new nested container for the default `super` key and returns a
475
475
/// new encoder instance for encoding `super` into that container.
476
476
///
477
477
/// Equivalent to calling `superEncoder(forKey:)` with
@@ -480,7 +480,7 @@ public protocol KeyedEncodingContainerProtocol {
480
480
/// - returns: A new encoder to pass to `super.encode(to:)`.
481
481
mutating func superEncoder( ) -> Encoder
482
482
483
- /// Stores a new nested container for the given key and returns A new encoder
483
+ /// Stores a new nested container for the given key and returns a new encoder
484
484
/// instance for encoding `super` into that container.
485
485
///
486
486
/// - parameter key: The key to encode `super` for.
@@ -911,7 +911,7 @@ public struct KeyedEncodingContainer<K: CodingKey> :
911
911
return _box. nestedUnkeyedContainer ( forKey: key)
912
912
}
913
913
914
- /// Stores a new nested container for the default `super` key and returns A
914
+ /// Stores a new nested container for the default `super` key and returns a
915
915
/// new encoder instance for encoding `super` into that container.
916
916
///
917
917
/// Equivalent to calling `superEncoder(forKey:)` with
@@ -922,7 +922,7 @@ public struct KeyedEncodingContainer<K: CodingKey> :
922
922
return _box. superEncoder ( )
923
923
}
924
924
925
- /// Stores a new nested container for the given key and returns A new encoder
925
+ /// Stores a new nested container for the given key and returns a new encoder
926
926
/// instance for encoding `super` into that container.
927
927
///
928
928
/// - parameter key: The key to encode `super` for.
0 commit comments