From 078d3e36acc6b24185d594be831a17c11447f6be Mon Sep 17 00:00:00 2001 From: Gareth Flandro <137940955+GarethFlandro@users.noreply.github.com> Date: Fri, 10 Jan 2025 13:57:14 -0500 Subject: [PATCH] Update kotlin-tour-functions.md --- docs/topics/tour/kotlin-tour-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/tour/kotlin-tour-functions.md b/docs/topics/tour/kotlin-tour-functions.md index 030385da064..78bd70adb8f 100644 --- a/docs/topics/tour/kotlin-tour-functions.md +++ b/docs/topics/tour/kotlin-tour-functions.md @@ -344,7 +344,7 @@ fun main() { Lambda expressions can be hard to understand at first glance so let's break it down. Lambda expressions are written within curly braces `{}`. -Within the lambda expression, you write: +Within the lambda expression: * The parameters followed by an `->`. * The function body after the `->`.