diff --git a/src/main/scala/scalatutorial/sections/TermsAndTypes.scala b/src/main/scala/scalatutorial/sections/TermsAndTypes.scala index 445812cb..a336b928 100644 --- a/src/main/scala/scalatutorial/sections/TermsAndTypes.scala +++ b/src/main/scala/scalatutorial/sections/TermsAndTypes.scala @@ -67,7 +67,7 @@ object TermsAndTypes extends ScalaTutorialSection { * - What is the result of the concatenation of the texts “Hello, ” and “Scala!”? * * {{{ - * "Hello, " ++ "Scala!" + * "Hello, " + "Scala!" * }}} * * = Evaluation = @@ -93,7 +93,7 @@ object TermsAndTypes extends ScalaTutorialSection { */ def evaluation(res0: Int, res1: String): Unit = { 1 + 2 shouldBe res0 - "Hello, " ++ "Scala!" shouldBe res1 + "Hello, " + "Scala!" shouldBe res1 } /**