From 4abdab67f3729160d6df44ecf973ec186b9378dc Mon Sep 17 00:00:00 2001 From: Martin Delille Date: Thu, 29 Oct 2015 11:01:35 +0100 Subject: [PATCH] fix typo and add comma latitiude => latitude add space and
--- challenges/json-apis-and-ajax.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/json-apis-and-ajax.json b/challenges/json-apis-and-ajax.json index ea3a4351e2..76b89f1688 100644 --- a/challenges/json-apis-and-ajax.json +++ b/challenges/json-apis-and-ajax.json @@ -377,7 +377,7 @@ "Here's some code that does this:", "if (navigator.geolocation) {", "  navigator.geolocation.getCurrentPosition(function(position) {", - "    $(\"#data\").html(\"latitiude\" + position.coords.latitude + \"longitude\" + position.coords.longitude);", + "    $(\"#data\").html(\"latitude: \" + position.coords.latitude + \"<br>longitude: \" + position.coords.longitude);", "  });", "}" ],