Skip to content

Commit bd94b14

Browse files
committed
[stdlib] Reapply documentation revisions (781f632)
1 parent c84c362 commit bd94b14

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

stdlib/public/core/Codable.swift

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -722,22 +722,22 @@ public protocol KeyedDecodingContainerProtocol<Key> {
722722
/// The path of coding keys taken to get to this point in decoding.
723723
var codingPath: [CodingKey] { get }
724724

725-
/// All the keys the `Decoder` has for this container.
725+
/// All the keys the decoder has for this container.
726726
///
727-
/// Different keyed containers from the same `Decoder` may return different
728-
/// keys here; it is possible to encode with multiple key types which are
729-
/// not convertible to one another. This should report all keys present
730-
/// which are convertible to the requested type.
727+
/// Different keyed containers from the same decoder may return different
728+
/// keys here, because it is possible to encode with multiple key types
729+
/// which are not convertible to one another. This should report all keys
730+
/// present which are convertible to the requested type.
731731
var allKeys: [Key] { get }
732732

733733
/// Returns a Boolean value indicating whether the decoder contains a value
734734
/// associated with the given key.
735735
///
736-
/// The value associated with `key` may be a null value as appropriate for
737-
/// the data format.
736+
/// The value associated with the given key may be a null value as
737+
/// appropriate for the data format.
738738
///
739739
/// - parameter key: The key to search for.
740-
/// - returns: Whether the `Decoder` has an entry for the given key.
740+
/// - returns: Whether the decoder has an entry for the given key.
741741
func contains(_ key: Key) -> Bool
742742

743743
/// Decodes a null value for the given key.

0 commit comments

Comments
 (0)