From a748e320544a86b7d1d73ecc6e778e0aad8d7bf9 Mon Sep 17 00:00:00 2001 From: David <40966434+David35D@users.noreply.github.com> Date: Tue, 10 Jan 2023 15:33:39 -0400 Subject: [PATCH] Corrected mistranslation At line 92, instead of "Agregar" it's "Sumar", since "agregar" is not the equivalent of "sum" or "add" in a mathematical context. --- Spanish/dia_06_Bucles/dia_06_bucles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spanish/dia_06_Bucles/dia_06_bucles.md b/Spanish/dia_06_Bucles/dia_06_bucles.md index 70d3c9b..c776b72 100644 --- a/Spanish/dia_06_Bucles/dia_06_bucles.md +++ b/Spanish/dia_06_Bucles/dia_06_bucles.md @@ -89,7 +89,7 @@ for (let i = 0; i < countries.length; i++) { // ["FINLAND", "SWEDEN", "DENMARK", "NORWAY", "ICELAND"] ``` -Agregar todos los elementos en un array +Sumar todos los elementos en un array ```js const numbers = [1, 2, 3, 4, 5];