diff --git a/_posts/2021-02-26-tuples-bring-generic-programming-to-scala-3.md b/_posts/2021-02-26-tuples-bring-generic-programming-to-scala-3.md index 56d6e2881..47e42dbe0 100644 --- a/_posts/2021-02-26-tuples-bring-generic-programming-to-scala-3.md +++ b/_posts/2021-02-26-tuples-bring-generic-programming-to-scala-3.md @@ -142,7 +142,7 @@ We can create an entrypoint function and test this implementation: def tupleToCsv[X <: Tuple : RowEncoder](tuple: X): List[String] = summon[RowEncoder[X]].encodeRow(tuple) -tupleToCsv(("Bob", 42, false)) // List("Bob", 42, false) +tupleToCsv(("Bob", 42, false)) // List("Bob", "42", "false") ``` ## How to obtain a tuple from a case class?