From b45406ec9d61aa613604c963a88565559a06b636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kelvin=20S=C3=A1nchez?= Date: Wed, 17 Feb 2021 13:31:42 -0400 Subject: [PATCH] fix(learn): Remove repeated definition tag in challenge (#41151) --- .../basic-javascript/nest-one-array-within-another-array.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.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nest-one-array-within-another-array.md index de2c0bbe8d..e49ac053d0 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nest-one-array-within-another-array.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/nest-one-array-within-another-array.md @@ -15,7 +15,7 @@ You can also nest arrays within other arrays, like below: [["Bulls", 23], ["White Sox", 45]] ``` -This is also called a multi-dimensional array. +This is also called a multi-dimensional array. # --instructions--