From 1acc5aa8889d50e9197f214e62c995f2d72ff35b Mon Sep 17 00:00:00 2001 From: Andrey Antipov Date: Wed, 16 Oct 2024 13:55:28 +0200 Subject: [PATCH] GH-882 - Fix Kotlin example in fundamentals section. --- src/docs/antora/modules/ROOT/pages/fundamentals.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/antora/modules/ROOT/pages/fundamentals.adoc b/src/docs/antora/modules/ROOT/pages/fundamentals.adoc index f1cb8b20..859ed8b1 100644 --- a/src/docs/antora/modules/ROOT/pages/fundamentals.adoc +++ b/src/docs/antora/modules/ROOT/pages/fundamentals.adoc @@ -62,7 +62,7 @@ Kotlin:: + [source, kotlin, role="secondary"] ---- -modules.forEach(println(it)) +modules.forEach { println(it) } ---- ====== .The console output of our application module arrangement