Skip to content

Commit e8055f6

Browse files
lorenteyvanvoorden
authored andcommitted
Apply suggestions from code review
1 parent 15c0202 commit e8055f6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

stdlib/public/core/Dictionary.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2171,8 +2171,7 @@ extension Dictionary {
21712171
/// are both `true`, then `a.isTriviallyIdentical(to: c)` is also `true`.
21722172
/// (Transitivity)
21732173
/// - If `a` and `b` are `Equatable`, then `a.isTriviallyIdentical(b)` implies
2174-
/// `a == b`
2175-
/// - `a == b` does not imply `a.isTriviallyIdentical(b)`
2174+
/// `a == b`. `a == b` does not imply `a.isTriviallyIdentical(b)`
21762175
///
21772176
/// Values produced by copying the same value, with no intervening mutations,
21782177
/// will compare identical:

stdlib/public/core/Set.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1674,8 +1674,7 @@ extension Set {
16741674
/// - If `a.isTriviallyIdentical(to: b)` and `b.isTriviallyIdentical(to: c)`
16751675
/// are both `true`, then `a.isTriviallyIdentical(to: c)` is also `true`.
16761676
/// (Transitivity)
1677-
/// - `a.isTriviallyIdentical(b)` implies `a == b`
1678-
/// - `a == b` does not imply `a.isTriviallyIdentical(b)`
1677+
/// - `a.isTriviallyIdentical(b)` implies `a == b`. `a == b` does not imply `a.isTriviallyIdentical(b)`
16791678
///
16801679
/// Values produced by copying the same value, with no intervening mutations,
16811680
/// will compare identical:

0 commit comments

Comments
 (0)