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