From b784ef90b639109646ca644626edbe7b7b9f96e7 Mon Sep 17 00:00:00 2001 From: Martin Kwan Date: Mon, 10 Aug 2015 00:40:12 -0700 Subject: [PATCH 1/4] Updated Pig Latin Link Updated link so it would open in a new tab instead of the current tab --- challenges/intermediate-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/intermediate-bonfires.json b/challenges/intermediate-bonfires.json index a85f6367e6..965767fb2e 100644 --- a/challenges/intermediate-bonfires.json +++ b/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." ], From 062d73af144683a395bdd8517f4662cee8ab6194 Mon Sep 17 00:00:00 2001 From: Brett Guillory Date: Mon, 10 Aug 2015 13:20:18 -0500 Subject: [PATCH 2/4] Fix for incorrect RGB test value RGB test value was testing for (0,0,255) which is B, should be testing for (0, 255,0), which is green. --- challenges/jquery-ajax-and-json.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/jquery-ajax-and-json.json b/challenges/jquery-ajax-and-json.json index fa3f8641a9..b024e4ef77 100644 --- a/challenges/jquery-ajax-and-json.json +++ b/challenges/jquery-ajax-and-json.json @@ -674,7 +674,7 @@ "Here's an example of how you would use the children() function: $('#left-well').children().css('color', 'blue')" ], "tests": [ - "assert($('#target6').css('color') === 'rgb(0, 0, 255)', 'Your \"target6\" element should have green text.')", + "assert($('#target6').css('color') === 'rgb(0, 255, 0), 'Your \"target6\" element should have green text.')", "assert(!editor.match(/\\.children\\(\\)\\.css/g), 'You should use the children() function to modify these elements.')", "assert(!editor.match(/
/g), 'Only use jQuery to add these classes to the element.')" ], From ee0392482de85040950c8c0c648241931beb99d2 Mon Sep 17 00:00:00 2001 From: Martin Kwan Date: Mon, 10 Aug 2015 13:42:33 -0700 Subject: [PATCH 3/4] Update intermediate-bonfires.json --- challenges/intermediate-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/intermediate-bonfires.json b/challenges/intermediate-bonfires.json index 965767fb2e..6a87b21446 100644 --- a/challenges/intermediate-bonfires.json +++ b/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." ], From dbf92d04e1c4926c33ce726f6be51ee9a4269d0d Mon Sep 17 00:00:00 2001 From: Martin Kwan Date: Mon, 10 Aug 2015 14:42:37 -0700 Subject: [PATCH 4/4] Updated DNA Pairing link Updated link so it would open in a new tab instead of the current tab --- challenges/intermediate-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/intermediate-bonfires.json b/challenges/intermediate-bonfires.json index a85f6367e6..2187161c2a 100644 --- a/challenges/intermediate-bonfires.json +++ b/challenges/intermediate-bonfires.json @@ -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." ],