Skip to content

Commit 0a6f99a

Browse files
authored
Merge pull request #32661 from amartini51/release/5.3
2 parents b3c6c5e + cf4cd6a commit 0a6f99a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

stdlib/public/core/Codable.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ public protocol KeyedEncodingContainerProtocol {
471471
forKey key: Key
472472
) -> UnkeyedEncodingContainer
473473

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
475475
/// new encoder instance for encoding `super` into that container.
476476
///
477477
/// Equivalent to calling `superEncoder(forKey:)` with
@@ -480,7 +480,7 @@ public protocol KeyedEncodingContainerProtocol {
480480
/// - returns: A new encoder to pass to `super.encode(to:)`.
481481
mutating func superEncoder() -> Encoder
482482

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
484484
/// instance for encoding `super` into that container.
485485
///
486486
/// - parameter key: The key to encode `super` for.
@@ -911,7 +911,7 @@ public struct KeyedEncodingContainer<K: CodingKey> :
911911
return _box.nestedUnkeyedContainer(forKey: key)
912912
}
913913

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
915915
/// new encoder instance for encoding `super` into that container.
916916
///
917917
/// Equivalent to calling `superEncoder(forKey:)` with
@@ -922,7 +922,7 @@ public struct KeyedEncodingContainer<K: CodingKey> :
922922
return _box.superEncoder()
923923
}
924924

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
926926
/// instance for encoding `super` into that container.
927927
///
928928
/// - parameter key: The key to encode `super` for.

0 commit comments

Comments
 (0)