File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ extension Sequence {
96
96
/// let hues = ["Heliotrope": 296, "Coral": 16, "Aquamarine": 156]
97
97
/// let leastHue = hues.min { a, b in a.value < b.value }
98
98
/// print(leastHue)
99
- /// // Prints "Optional(("Coral", 16))"
99
+ /// // Prints "Optional((key: "Coral", value: 16))"
100
100
///
101
101
/// - Parameter areInIncreasingOrder: A predicate that returns `true`
102
102
/// if its first argument should be ordered before its second
@@ -141,7 +141,7 @@ extension Sequence {
141
141
/// let hues = ["Heliotrope": 296, "Coral": 16, "Aquamarine": 156]
142
142
/// let greatestHue = hues.max { a, b in a.value < b.value }
143
143
/// print(greatestHue)
144
- /// // Prints "Optional(("Heliotrope", 296))"
144
+ /// // Prints "Optional((key: "Heliotrope", value: 296))"
145
145
///
146
146
/// - Parameter areInIncreasingOrder: A predicate that returns `true` if its
147
147
/// first argument should be ordered before its second argument;
You can’t perform that action at this time.
0 commit comments