Skip to content

Commit 0fa5dcf

Browse files
authored
chore: functions order in 02_Lambdas.md (Kotlin#103)
Although not very relevant to the understanding of the example Listed the numbers of the functions in order.
1 parent 44884e5 commit 0fa5dcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/04_functional/02_Lambdas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ fun main() {
2020
2121
val upperCase6: (String) -> String = String::toUpperCase // 6
2222
23-
println(upperCase2("hello"))
2423
println(upperCase1("hello"))
24+
println(upperCase2("hello"))
2525
println(upperCase3("hello"))
2626
println(upperCase5("hello"))
2727
println(upperCase6("hello"))

0 commit comments

Comments
 (0)