From 62bf5ad17d64c598a01087811ee3c713c51e183e Mon Sep 17 00:00:00 2001 From: jacheg Date: Mon, 5 Nov 2018 01:13:33 -0800 Subject: [PATCH] Changed the wording for the elements in an array. (#21729) It was confusing before. Mentioned elements that didn't exist. Maybe meant indexes? --- guide/english/c/arrays/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/arrays/index.md b/guide/english/c/arrays/index.md index 77740b29fe..c848a92eef 100644 --- a/guide/english/c/arrays/index.md +++ b/guide/english/c/arrays/index.md @@ -45,7 +45,7 @@ Here you have created an `array` of `ints`(Integers), called `arr`. This array h ```C datatype name[number of elements] ``` -The first element of this array is `1`, the second is `2` etc. +The elements in this array are whatever values you choose to store. The values stored will replace the "number of elements" section. ```C int brr[] = {78, 65};