Skip to content

Commit 2ccf3a2

Browse files
authored
Merge pull request #39403 from amartini51/identifiable_83422517
Avoid 'e.g.' per Apple Style.
2 parents ed45116 + 9fa3121 commit 2ccf3a2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

stdlib/public/core/Identifiable.swift

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
/// data fields change, such as the user's name.
2121
///
2222
/// `Identifiable` leaves the duration and scope of the identity unspecified.
23-
/// Identities could be any of the following:
23+
/// Identities can have any of the following characteristics:
2424
///
25-
/// - Guaranteed always unique (e.g. UUIDs).
26-
/// - Persistently unique per environment (e.g. database record keys).
27-
/// - Unique for the lifetime of a process (e.g. global incrementing integers).
28-
/// - Unique for the lifetime of an object (e.g. object identifiers).
29-
/// - Unique within the current collection (e.g. collection index).
25+
/// - Guaranteed always unique, like UUIDs.
26+
/// - Persistently unique per environment, like database record keys.
27+
/// - Unique for the lifetime of a process, like global incrementing integers.
28+
/// - Unique for the lifetime of an object, like object identifiers.
29+
/// - Unique within the current collection, like collection indices.
3030
///
31-
/// It is up to both the conformer and the receiver of the protocol to document
31+
/// It's up to both the conformer and the receiver of the protocol to document
3232
/// the nature of the identity.
3333
///
3434
/// Conforming to the Identifiable Protocol

0 commit comments

Comments
 (0)