From 0fa84e9302db4596c9ab109cb4fe3749be8f454e Mon Sep 17 00:00:00 2001 From: Manish Bansal Date: Sat, 4 Jul 2020 23:19:17 +0530 Subject: [PATCH] Corrected tupple definition Earlier statement was more ambiguous for a beginner. --- _tour/tuples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_tour/tuples.md b/_tour/tuples.md index b80271a649..43e6b622cd 100644 --- a/_tour/tuples.md +++ b/_tour/tuples.md @@ -12,7 +12,7 @@ redirect_from: "/tutorials/tour/tuples.html" --- In Scala, a tuple is a value that contains a fixed number of elements, each -with a distinct type. Tuples are immutable. +with a same or distinct type. Tuples are immutable. Tuples are especially handy for returning multiple values from a method.