From 234aa0a5eaa7fcc90b6e3d5274b3febafd1a53e0 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Mon, 10 Aug 2015 17:35:16 -0700 Subject: [PATCH] fix missing quote escape --- seed/challenges/intermediate-bonfires.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/intermediate-bonfires.json b/seed/challenges/intermediate-bonfires.json index 1f2c681c89..743f4d2e1a 100644 --- a/seed/challenges/intermediate-bonfires.json +++ b/seed/challenges/intermediate-bonfires.json @@ -187,7 +187,7 @@ "difficulty": "2.04", "description": [ "Translate the provided string to pig latin.", - "Pig Latin takes the first consonant (or consonant cluster) of an English word, moves it to the end of the word and suffixes an \"ay\".", + "Pig Latin takes the first consonant (or consonant cluster) of an English word, moves it to the end of the word and suffixes an \"ay\".", "If a word begins with a vowel you just add \"way\" to the end.", "Remember to use RSAP if you get stuck. Try to pair program. Write your own code." ], @@ -229,7 +229,7 @@ "difficulty": "2.05", "description": [ "The DNA strand is missing the pairing element. Match each character with the missing element and return the results as a 2d array.", - "Base pairs are a pair of AT and CG. Match the missing element to the provided character.", + "Base pairs are a pair of AT and CG. Match the missing element to the provided character.", "Return the provided character as the first element in each array.", "Remember to use RSAP if you get stuck. Try to pair program. Write your own code." ],