Skip to content

Commit 6470ed1

Browse files
authored
Merge branch 'main' into ci/update-swift-version
2 parents 6e8fa50 + a1bd338 commit 6470ed1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/EmbeddedSwift/Documentation.docc/UsingEmbeddedSwift/Existentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ let concrete = existential as! Derived // ✅, and will trap at runtime if a dif
5151

5252
Class-bound existentials in Embedded Swift do come with some restrictions compared to class-bound existentials in regular Swift:
5353

54-
- 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:
54+
- You cannot use an existential to call a unbounded generic method from the protocol. This is described in depth in <doc:NonFinalGenericMethods>. For example:
5555
```swift
5656
protocol ClassBoundProtocol: AnyObject {
5757
func foo<T>(t: T)

0 commit comments

Comments
 (0)