From 0c9c720586c8cfae32c0931807d5b4d0d332a563 Mon Sep 17 00:00:00 2001 From: Muukii Date: Thu, 9 Jan 2025 22:17:28 +0900 Subject: [PATCH] Update docs --- .../Documentation.docc/Documentation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) }