From b44f5378357af16d992023d368f5d27e1df2dfe1 Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Sun, 23 Aug 2015 03:26:20 +0530 Subject: [PATCH] Fix error in string --- challenges/basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/basic-javascript.json b/challenges/basic-javascript.json index d12c94a6f3..5ee5ee83d7 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -1277,7 +1277,7 @@ "description":[ "Now that our slots will each generate random numbers, we need to check whether they've all returned the same number.", "If they have, we should notify our user that they've won.", - "Otherwise, we should return null, which is a JavaScript literal representing null or an "empty" value, i.e. no object value is present.", + "Otherwise, we should return null, which is a JavaScript literal representing null or an \"empty\" value, i.e. no object value is present.", "If all three numbers match, we should return the number that we have in three of slots or leave it as null.", "Let's create an if statement with multiple conditions in order to check whether all numbers are equal.", "if(slotOne !== slotTwo || slotTwo !== slotThree){",