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 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
You can’t perform that action at this time.
0 commit comments