From b49b9f3e3c6ec53413689a91cfe5786b3134f8f5 Mon Sep 17 00:00:00 2001 From: Vincent Shury Date: Mon, 24 Feb 2020 11:02:53 -0500 Subject: [PATCH] Typo whitespace fix in access-multi-dimensional-arrays-with-indexes.english.md (#38247) * Update access-multi-dimensional-arrays-with-indexes.english.md Co-authored-by: Oliver Eyton-Williams --- .../access-multi-dimensional-arrays-with-indexes.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-multi-dimensional-arrays-with-indexes.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-multi-dimensional-arrays-with-indexes.english.md index e21356ac7e..00953705ff 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-multi-dimensional-arrays-with-indexes.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/access-multi-dimensional-arrays-with-indexes.english.md @@ -23,7 +23,7 @@ arr[3][0]; // equals [10,11,12] arr[3][0][1]; // equals 11 ``` -Note
There shouldn't be any spaces between the array name and the square brackets, like array [0][0] and even this array [0] [0] is not allowed. Although JavaScript is able to process this correctly, this may confuse other programmers reading your code. +Note
There shouldn't be any spaces between the array name and the square brackets, like `array [0][0]` and even this `array [0] [0]` is not allowed. Although JavaScript is able to process this correctly, this may confuse other programmers reading your code. ## Instructions