diff --git a/Sources/EmbeddedSwift/Documentation.docc/UsingEmbeddedSwift/Existentials.md b/Sources/EmbeddedSwift/Documentation.docc/UsingEmbeddedSwift/Existentials.md index 716e009..7d69964 100644 --- a/Sources/EmbeddedSwift/Documentation.docc/UsingEmbeddedSwift/Existentials.md +++ b/Sources/EmbeddedSwift/Documentation.docc/UsingEmbeddedSwift/Existentials.md @@ -51,7 +51,7 @@ let concrete = existential as! Derived // ✅, and will trap at runtime if a dif Class-bound existentials in Embedded Swift do come with some restrictions compared to class-bound existentials in regular Swift: -- You cannot use an existential to call a unbounded generic method from the protocol. This is described in depth in [Embedded Swift -- Non-final generic methods](NonFinalGenericMethods.md). For example: +- You cannot use an existential to call a unbounded generic method from the protocol. This is described in depth in . For example: ```swift protocol ClassBoundProtocol: AnyObject { func foo(t: T)