From c331b12413b0a68bdb13b9205dff6b1ed9e1810f Mon Sep 17 00:00:00 2001 From: Tim dinia <33469289+Timdinia@users.noreply.github.com> Date: Fri, 29 Nov 2019 10:07:51 +0100 Subject: [PATCH] fix(curriculum): correct typo in nest one array within another array challenge instruction (#37851) --- .../nest-one-array-within-another-array.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nest-one-array-within-another-array.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nest-one-array-within-another-array.english.md index 7970ef315c..7181ea9b30 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nest-one-array-within-another-array.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nest-one-array-within-another-array.english.md @@ -8,7 +8,7 @@ forumTopicId: 18247 ## Description
-You can also nest arrays within other arrays, like this: [["Bulls", 23], ["White Sox", 45]]. This is also called a multi-dimensional arrray. +You can also nest arrays within other arrays, like this: [["Bulls", 23], ["White Sox", 45]]. This is also called a multi-dimensional array.
## Instructions