From fd45c30d8699cedd146eb52c634463f149fbe285 Mon Sep 17 00:00:00 2001 From: Zeus <165814816+Markisha1997@users.noreply.github.com> Date: Thu, 16 May 2024 21:15:45 -0500 Subject: [PATCH] Update 02_Functions.md --- examples/01_introduction/02_Functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/01_introduction/02_Functions.md b/examples/01_introduction/02_Functions.md index 216941d..661bd52 100755 --- a/examples/01_introduction/02_Functions.md +++ b/examples/01_introduction/02_Functions.md @@ -28,7 +28,7 @@ fun main() { ``` 1. A simple function that takes a parameter of type `String` and returns `Unit` (i.e., no return value). -2. A function that takes a second [optional parameter with default value](https://kotlinlang.org/docs/reference/functions.html#default-arguments) `Info`. The return type is omitted, meaning that it's actually `Unit`. +2. A function that takes a second [optional parameter with default value](https://kotlinlang.org/docs/reference/functions.html#default) `Info`. The return type is omitted, meaning that it's actually `Unit`. 3. A function that returns an integer. 4. A single-expression function that returns an integer (inferred). 5. Calls the first function with the argument `Hello`.