File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 20
20
/// data fields change, such as the user's name.
21
21
///
22
22
/// `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 :
24
24
///
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 .
30
30
///
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
32
32
/// the nature of the identity.
33
33
///
34
34
/// Conforming to the Identifiable Protocol
You can’t perform that action at this time.
0 commit comments