From e75fa825d4596565152c763c7d57a88633f0a8de Mon Sep 17 00:00:00 2001 From: Naaani <44281580+Naaani@users.noreply.github.com> Date: Sat, 16 Mar 2019 12:05:32 -0500 Subject: [PATCH] Translate comments on Challenge Seed (#33179) --- .../learn-about-functional-programming.spanish.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/functional-programming/learn-about-functional-programming.spanish.md b/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/functional-programming/learn-about-functional-programming.spanish.md index 605cb176d1..a5a2cfbd10 100644 --- a/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/functional-programming/learn-about-functional-programming.spanish.md +++ b/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/functional-programming/learn-about-functional-programming.spanish.md @@ -33,15 +33,15 @@ tests: ```js /** - * A long process to prepare tea. - * @return {string} A cup of tea. + * Un largo proceso para preparar té. + * @return {string} Una taza de té. **/ const prepareTea = () => 'greenTea'; /** - * Get given number of cups of tea. - * @param {number} numOfCups Number of required cups of tea. - * @return {Array} Given amount of tea cups. + * Obtener número dado de tazas de té. + * @param {number} numOfCups Número de tazas de té requeridas.Number of required cups of tea. + * @return {Array} Cantidad dada de tazas de té. **/ const getTea = (numOfCups) => { const teaCups = [];