From 4810a28e655c0371572222f992a56e2b7b703535 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 30 Mar 2016 23:58:38 -0400 Subject: [PATCH] FIX - Grammar A to An --- .../automated-testing-and-debugging.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/03-back-end-development-certification/automated-testing-and-debugging.json b/challenges/03-back-end-development-certification/automated-testing-and-debugging.json index a272a358df..fab459adc4 100644 --- a/challenges/03-back-end-development-certification/automated-testing-and-debugging.json +++ b/challenges/03-back-end-development-certification/automated-testing-and-debugging.json @@ -52,7 +52,7 @@ "assert(code.match(/console\\.log\\(typeof[\\( ][\"'].*[\"']\\)?\\);/), 'message: You should console.log the typeof a string.');", "assert(code.match(/console\\.log\\(typeof[\\( ]\\d+\\.?\\d*\\)?\\);/), 'message: You should console.log the typeof a number.');", "assert(code.match(/console\\.log\\(typeof[\\( ]\\[\\]\\)?\\);/), 'message: You should console.log the typeof an array.');", - "assert(code.match(/console\\.log\\(typeof[\\( ]\\{\\}\\)?\\);/), 'message: You should console.log the typeof a object.');" + "assert(code.match(/console\\.log\\(typeof[\\( ]\\{\\}\\)?\\);/), 'message: You should console.log the typeof an object.');" ], "type": "waypoint", "challengeType": 1,