In Section "Practice: Kotlin Fundamentals", on Solution page 9
The temperature "Temperature converter" exercice
In my opinion the close parenthesis should be after the lambda as it is part of function parameters
printFinalTemperature(27.0, "Celsius", "Fahrenheit") { 9.0 / 5.0 * it + 32 }
printFinalTemperature(350.0, "Kelvin", "Celsius") { it - 273.15 }
printFinalTemperature(10.0, "Fahrenheit", "Kelvin") { 5.0 / 9.0 * (it - 32) + 273.15 }
should be
printFinalTemperature(27.0, "Celsius", "Fahrenheit", { 9.0 / 5.0 * it + 32 })
printFinalTemperature(350.0, "Kelvin", "Celsius", { it - 273.15 })
printFinalTemperature(10.0, "Fahrenheit", "Kelvin", { 5.0 / 9.0 * (it - 32) + 273.15 })
In Section "Practice: Kotlin Fundamentals", on Solution page 9
The temperature "Temperature converter" exercice
In my opinion the close parenthesis should be after the lambda as it is part of function parameters
should be