From 5c7736ef9db949a5772b447d97fe15d14b59898c Mon Sep 17 00:00:00 2001 From: saulthebear Date: Wed, 12 Oct 2016 16:08:30 +0200 Subject: [PATCH] Changed suggested link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed suggested link in the Pig Latin challenge from String.prototype.substr() to String.prototype.substring() since substr() is deprecated and shouldn’t be used in new projects. --- .../intermediate-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/intermediate-bonfires.json b/challenges/01-front-end-development-certification/intermediate-bonfires.json index 02a91ad0ce..5b903962de 100644 --- a/challenges/01-front-end-development-certification/intermediate-bonfires.json +++ b/challenges/01-front-end-development-certification/intermediate-bonfires.json @@ -341,7 +341,7 @@ "Array.prototype.indexOf()", "Array.prototype.push()", "Array.prototype.join()", - "String.prototype.substr()", + "String.prototype.substring()", "String.prototype.split()" ], "isRequired": true,