From 5295ca9eb5e67cdf497072e5faed4e81de7d8151 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Tue, 2 Jul 2024 14:40:09 -0400 Subject: [PATCH] Link to explanation --- Sources/SwiftGodot/SwiftGodot.docc/Variants.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Sources/SwiftGodot/SwiftGodot.docc/Variants.md b/Sources/SwiftGodot/SwiftGodot.docc/Variants.md index 6fc9c66f2..eeba4ce44 100644 --- a/Sources/SwiftGodot/SwiftGodot.docc/Variants.md +++ b/Sources/SwiftGodot/SwiftGodot.docc/Variants.md @@ -55,9 +55,10 @@ func getBoolValue (variant: Variant) -> Bool? { } ``` -SwiftGodot provides convenience failable initializers for all the types that can -be stored in a Variant. If the variant does not contain the type you are -requesting the result of the call is `nil`. +SwiftGodot provides convenience [failable +initializers](https://developer.apple.com/swift/blog/?id=17) for all the types +that can be stored in a Variant. If the variant does not contain the type you +are requesting the result of the call is `nil`. ## Common Usage Patterns