From a7ff667b9e8f59ad3ddaf60fc271922d4566c48a Mon Sep 17 00:00:00 2001 From: Sebastian Rasmussen Date: Sun, 23 Jun 2019 11:15:23 +0200 Subject: [PATCH] Clarification. --- src/ch03-02-data-types.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch03-02-data-types.md b/src/ch03-02-data-types.md index d2eeea65b9..3e34cd5f4a 100644 --- a/src/ch03-02-data-types.md +++ b/src/ch03-02-data-types.md @@ -286,8 +286,8 @@ fn main() { ``` This program creates a tuple, `x`, and then makes new variables for each -element by using their index. As with most programming languages, the first -index in a tuple is 0. +element by using their respective indicies. As with most programming languages, +the first index in a tuple is 0. #### The Array Type