diff --git a/docs/basic_syntax/functions.md b/docs/basic_syntax/functions.md index dcae3cf..e0470c7 100644 --- a/docs/basic_syntax/functions.md +++ b/docs/basic_syntax/functions.md @@ -74,7 +74,6 @@ fun failable(): Num? { return 1 } - ``` Note that you cannot force a function to become failable by simply appending the `?` to the return type. The `?` can (and must) only be used in a function declaration, if the function is known to be failable.