diff --git a/kyu_8/alternating_case/README.md b/kyu_8/alternating_case/README.md index 3a1d9aee5c2..7766d0fe930 100644 --- a/kyu_8/alternating_case/README.md +++ b/kyu_8/alternating_case/README.md @@ -6,7 +6,7 @@ selected language; **see the initial solution for details**) such that each lowercase letter becomes uppercase and each uppercase letter becomes lowercase. For example: -```test +```bash > "hello world".toAlternatingCase() === "HELLO WORLD" > > "HELLO WORLD".toAlternatingCase() === "hello world"