diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68e39ed6106dac2f0a98fd64.md b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68e39ed6106dac2f0a98fd64.md index a07c529a8e9..5c5f05e22ae 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68e39ed6106dac2f0a98fd64.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-javascript/68e39ed6106dac2f0a98fd64.md @@ -10,7 +10,7 @@ dashedName: challenge-82 Given a string representing a variable name, convert it to "spooky case" using the following constraints: - Replace all underscores (`_`), and hyphens (`-`) with a tilde (`~`). -- Capitalize the first letter of the string, and every other letter after that, ignore the tilde character when counting. +- Capitalize the first letter of the string, and every other letter after that. Ignore the tilde character when counting. Make all other letters lowercase. For example, given `hello_world`, return `HeLlO~wOrLd`. diff --git a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68e39ed6106dac2f0a98fd64.md b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68e39ed6106dac2f0a98fd64.md index 533ff36ae2a..f1cfd5ebe90 100644 --- a/curriculum/challenges/english/blocks/daily-coding-challenges-python/68e39ed6106dac2f0a98fd64.md +++ b/curriculum/challenges/english/blocks/daily-coding-challenges-python/68e39ed6106dac2f0a98fd64.md @@ -10,7 +10,7 @@ dashedName: challenge-82 Given a string representing a variable name, convert it to "spooky case" using the following constraints: - Replace all underscores (`_`), and hyphens (`-`) with a tilde (`~`). -- Capitalize the first letter of the string, and every other letter after that, ignore the tilde character when counting. +- Capitalize the first letter of the string, and every other letter after that. Ignore the tilde character when counting. Make all other letters lowercase. For example, given `hello_world`, return `HeLlO~wOrLd`.