From 2f19f77ccd571b34fdea060abe1c7faa220b352b Mon Sep 17 00:00:00 2001 From: Abhisek Pattnaik Date: Fri, 16 Oct 2015 14:40:47 +0530 Subject: [PATCH] Remove extra \ (backslash) character --- challenges/basic-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/basic-bonfires.json b/challenges/basic-bonfires.json index d3a0f22893..e2e2fa0e3f 100644 --- a/challenges/basic-bonfires.json +++ b/challenges/basic-bonfires.json @@ -143,7 +143,7 @@ "assert(palindrome(\"almostomla\") === false, 'message: palindrome(\"almostomla\") should return false.');", "assert(palindrome(\"My age is 0, 0 si ega ym.\") === true, 'message: palindrome(\"My age is 0, 0 si ega ym.\") should return true.');", "assert(palindrome(\"1 eye for of 1 eye.\") === false, 'message: palindrome(\"1 eye for of 1 eye.\") should return false.');", - "assert(palindrome(\"0_0 (: /-\\ :) 0-0\") === true, 'message: palindrome(\"0_0 (: /-\\\\ :) 0-0\") should return true.');" + "assert(palindrome(\"0_0 (: /-\\ :) 0-0\") === true, 'message: palindrome(\"0_0 (: /-\\ :) 0-0\") should return true.');" ], "challengeSeed": [ "function palindrome(str) {",