From d50c3447728e5afabeab3d703206a72cbd2ce8f4 Mon Sep 17 00:00:00 2001 From: kichukiran97 Date: Sat, 5 Jan 2019 21:35:51 +0530 Subject: [PATCH] Typo (#29638) ints was there which will make confusion --- 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 51dd1863ee..4c32159752 100644 --- a/guide/english/c/arrays/index.md +++ b/guide/english/c/arrays/index.md @@ -42,7 +42,7 @@ And now let's break the syntax down a bit: ```C int arr[4] = {1, 2, 3, 88}; ``` -Here you have created an `array` of `ints`(Integers), called `arr`. This array has 4 elements: `1`, `2`, `3`, `88`. Note the syntax! +Here you have created an `array` of `int`(Integers), called `arr`. This array has 4 elements: `1`, `2`, `3`, `88`. Note the syntax! ```C datatype name[number of elements] ```