From 62819e76c2d6700251c6063a453d44fa946e177c Mon Sep 17 00:00:00 2001 From: taku333 Date: Tue, 28 May 2024 10:14:02 +0900 Subject: [PATCH] Update 02_DelegatedProperties.md --- examples/07_Delegation/02_DelegatedProperties.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/07_Delegation/02_DelegatedProperties.md b/examples/07_Delegation/02_DelegatedProperties.md index 0c9f584..1bfc7e2 100755 --- a/examples/07_Delegation/02_DelegatedProperties.md +++ b/examples/07_Delegation/02_DelegatedProperties.md @@ -44,7 +44,7 @@ class LazySample { } val lazyStr: String by lazy { - println("computed!") // 2 + print("computed! ") // 2 "my lazy" } } @@ -52,7 +52,7 @@ class LazySample { fun main() { val sample = LazySample() // 1 println("lazyStr = ${sample.lazyStr}") // 2 - println(" = ${sample.lazyStr}") // 3 + println("lazyStr = ${sample.lazyStr}") // 3 } ```