diff --git a/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.spanish.md b/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.spanish.md
index b54a9e20c0..e06abdee94 100644
--- a/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.spanish.md
+++ b/curriculum/challenges/spanish/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/boo-who.spanish.md
@@ -8,7 +8,7 @@ localeTitle: Boo quien
---
## Descripción
- Compruebe si un valor está clasificado como un primitivo booleano. Devuelve verdadero o falso. Los primitivos booleanos son verdaderos y falsos. Recuerda usar la técnica de Leer-Buscar-Preguntar si te atascas. Trate de emparejar el programa. Escribe tu propio código.
+ Compruebe si un valor es clasificado como un primitivo booleano. Devuelve verdadero o falso. Los primitivos booleanos son verdaderos y falsos. Recuerda usar la técnica de Leer-Buscar-Preguntar si te atascas. Trate de emparejar el programa. Escribe tu propio código.
## Instrucciones
@@ -19,26 +19,26 @@ localeTitle: Boo quien
```yml
tests:
- - text: booWho(true)
debe devolver true.
- testString: 'assert.strictEqual(booWho(true), true, "booWho(true)
should return true.");'
+ - text: booWho(true)
debe devolver verdadero.
+ testString: 'assert.strictEqual(booWho(true), true, "booWho(true)
debe devolver verdadero.");'
- text: booWho(false)
debe devolver verdadero.
- testString: 'assert.strictEqual(booWho(false), true, "booWho(false)
should return true.");'
+ testString: 'assert.strictEqual(booWho(false), true, "booWho(false)
debe devolver verdadero.");'
- text: 'booWho([1, 2, 3])
debe devolver falso.'
- testString: 'assert.strictEqual(booWho([1, 2, 3]), false, "booWho([1, 2, 3])
should return false.");'
+ testString: 'assert.strictEqual(booWho([1, 2, 3]), false, "booWho([1, 2, 3])
debe devolver falso.");'
- text: 'booWho([].slice)
debe devolver falso.'
- testString: 'assert.strictEqual(booWho([].slice), false, "booWho([].slice)
should return false.");'
+ testString: 'assert.strictEqual(booWho([].slice), false, "booWho([].slice)
debe devolver falso.");'
- text: 'booWho({ "a": 1 })
debe devolver falso.'
- testString: 'assert.strictEqual(booWho({ "a": 1 }), false, "booWho({ "a": 1 })
should return false.");'
+ testString: 'assert.strictEqual(booWho({ "a": 1 }), false, "booWho({ "a": 1 })
debe devolver falso.");'
- text: booWho(1)
debe devolver falso.
- testString: 'assert.strictEqual(booWho(1), false, "booWho(1)
should return false.");'
+ testString: 'assert.strictEqual(booWho(1), false, "booWho(1)
debe devolver falso.");'
- text: booWho(NaN)
debe devolver falso.
- testString: 'assert.strictEqual(booWho(NaN), false, "booWho(NaN)
should return false.");'
+ testString: 'assert.strictEqual(booWho(NaN), false, "booWho(NaN)
debe devolver falso.");'
- text: booWho("a")
debe devolver falso.
- testString: 'assert.strictEqual(booWho("a"), false, "booWho("a")
should return false.");'
- - text: booWho("true")
debería devolver falso.
- testString: 'assert.strictEqual(booWho("true"), false, "booWho("true")
should return false.");'
- - text: booWho("false")
debe devolver false.
- testString: 'assert.strictEqual(booWho("false"), false, "booWho("false")
should return false.");'
+ testString: 'assert.strictEqual(booWho("a"), false, "booWho("a")
debe devolver falso.");'
+ - text: booWho("true")
debe devolver falso.
+ testString: 'assert.strictEqual(booWho("true"), false, "booWho("true")
debe devolver falso.");'
+ - text: booWho("false")
debe devolver falso.
+ testString: 'assert.strictEqual(booWho("false"), false, "booWho("false")
debe devolver falso.");'
```