From 00e40e3194b9daa8ae8323274e48173d3d8bc736 Mon Sep 17 00:00:00 2001 From: Akira Laine Date: Sun, 10 Jan 2016 19:09:17 +1100 Subject: [PATCH] fixed semicolon typo --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 8da8aff3be..dcb5ecdce0 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -757,7 +757,7 @@ "title": "Declare String Variables", "description": [ "Previously we have used the code", - "var myName = \"your name\"", + "var myName = \"your name\";", "\"your name\" is called a string literal. It is a string because it is a series of zero or more characters enclosed in single or double quotes.", "

Instructions

", "Create two new string variables: myFirstName and myLastName and assign them the values of your first and last name, respectively."