From 1c790d66be66008421d9bd77297e2e6b6bc4d0e4 Mon Sep 17 00:00:00 2001 From: alvynmcq Date: Sat, 14 Nov 2015 22:33:37 +0000 Subject: [PATCH] Typo in sample code in Waypoint Update the Properties of JS Object #4438 removed extra comma --- 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 5aa5b7549e..9105e6d115 100644 --- a/challenges/basic-javascript.json +++ b/challenges/basic-javascript.json @@ -743,7 +743,7 @@ "var ourDog = {", "  \"name\": \"Camper\",", "  \"legs\": 4,", - "  \"tails\": 1,,", + "  \"tails\": 1,", "  \"friends\": [\"everything!\"]", "};", "Since he's a particularly happy dog, let's change his name to \"Happy Camper\". Here's how we update his object's name property:",