diff --git a/Sources/VergeNormalization/Documentation.docc/Documentation.md b/Sources/VergeNormalization/Documentation.docc/Documentation.md index 5b796b6660..6888bf6223 100644 --- a/Sources/VergeNormalization/Documentation.docc/Documentation.md +++ b/Sources/VergeNormalization/Documentation.docc/Documentation.md @@ -74,9 +74,9 @@ Here's an example of how to define the `Book` and `Author` entities: ```swift struct Book: EntityType { - typealias EntityIDRawType = String + typealias TypedIdentifierRawValue = String - var entityID: EntityID { + var typedID: TypedID { .init(rawID) } @@ -87,9 +87,9 @@ struct Book: EntityType { struct Author: EntityType { - typealias EntityIDRawType = String + typealias TypedIdentifierRawValue = String - var entityID: EntityID { + var typedID: TypedID { .init(rawID) }