diff --git a/_overviews/scala3-book/taste-collections.md b/_overviews/scala3-book/taste-collections.md index 84fb394a64..477d59ad68 100644 --- a/_overviews/scala3-book/taste-collections.md +++ b/_overviews/scala3-book/taste-collections.md @@ -103,8 +103,7 @@ You can also use this _extractor_ approach to assign the tuple fields to variabl val (num, str, person) = t // result: -// val languages: [zh-cn] -num: Int = 11 +// val num: Int = 11 // val str: String = eleven // val person: Person = Person(Eleven) ```