From 591bd285ecde73e66b966d575f77a0452780488c Mon Sep 17 00:00:00 2001 From: Andrey Antipov Date: Wed, 16 Oct 2024 13:55:28 +0200 Subject: [PATCH] GH-887 - 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 a967033a..699775e0 100644 --- a/src/docs/antora/modules/ROOT/pages/fundamentals.adoc +++ b/src/docs/antora/modules/ROOT/pages/fundamentals.adoc @@ -61,7 +61,7 @@ Kotlin:: + [source, kotlin, role="secondary"] ---- -modules.forEach(println(it)) +modules.forEach { println(it) } ---- ====== .The console output of our application module arrangement