From ab741f98a1253e294f12bf61135b4dad39bc4ff0 Mon Sep 17 00:00:00 2001 From: Matt Oliver Date: Tue, 17 Jan 2017 09:22:21 -0600 Subject: [PATCH] changing the word 'swell' to the word 'well' --- .../basic-javascript.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index 644311608d8..e50a2657bf7 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -1316,7 +1316,7 @@ "description": [ "Sometimes you will need to build a string, Mad Libs style. By using the concatenation operator (+), you can insert one or more variables into a string you're building.", "

Instructions

", - "Set myName to a string equal to your name and build myStr with myName between the strings \"My name is \" and \" and I am swell!\"" + "Set myName to a string equal to your name and build myStr with myName between the strings \"My name is \" and \" and I am well!\"" ], "releasedOn": "January 1, 2016", "challengeSeed": [ @@ -1347,7 +1347,7 @@ "})();" ], "solutions": [ - "var myName = \"Bob\";\nvar myStr = \"My name is \" + myName + \" and I am swell!\";" + "var myName = \"Bob\";\nvar myStr = \"My name is \" + myName + \" and I am well!\";" ], "tests": [ "assert(typeof myName !== 'undefined' && myName.length > 2, 'message: myName should be set to a string at least 3 characters long');", @@ -1361,7 +1361,7 @@ "description": [ "A veces necesitarás construir una cadena, al estilo Mad Libs. Mediante el uso del operador concatenación (+), puedes insertar una o más variables dentro de una cadena que estés construyendo.", "

Instrucciones

", - "Asigna myName a una cadena igual a tu nombre y construye myStr con myName entre las cadenas \"My name is \" and \" and I am swell!\"" + "Asigna myName a una cadena igual a tu nombre y construye myStr con myName entre las cadenas \"My name is \" and \" and I am well!\"" ] } }