We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30cb308 commit 3ebeb27Copy full SHA for 3ebeb27
README.md
@@ -414,22 +414,22 @@ Here's an example of how to define the `Book` and `Author` entities:
414
```swift
415
struct Book: EntityType {
416
417
- typealias EntityIDRawType = String
+ typealias TypedIdentifierRawValue = String
418
419
- var entityID: EntityID {
+ var typedID: TypedID {
420
.init(rawID)
421
}
422
423
let rawID: String
424
var name: String = "initial"
425
- let authorID: Author.EntityID
+ let authorID: Author.TypedID
426
427
428
struct Author: EntityType {
429
430
431
432
433
434
435
0 commit comments