From 0c7e8cca107325fccdfb579bfe21ccfaeea02e8f Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Mon, 25 May 2026 13:39:18 -0700 Subject: [PATCH 1/2] Format all `instructions.append.md` to start with an H1 (required but ignored) and H2 --- exercises/practice/anagram/.docs/instructions.append.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exercises/practice/anagram/.docs/instructions.append.md b/exercises/practice/anagram/.docs/instructions.append.md index 302aadeb..6ca3663c 100644 --- a/exercises/practice/anagram/.docs/instructions.append.md +++ b/exercises/practice/anagram/.docs/instructions.append.md @@ -1,5 +1,7 @@ # Instructions append +## Implementation + The result should be a string with anagrams separated by a comma (e.g., `"hello,world"`). You must return the anagrams in the same order as they are listed in the candidate words. From c4c1ad845c81f7f8685de8eb5420afcad6572bfe Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Tue, 26 May 2026 22:16:56 -0700 Subject: [PATCH 2/2] Update the header to "Track specific instructions" --- exercises/practice/anagram/.docs/instructions.append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/anagram/.docs/instructions.append.md b/exercises/practice/anagram/.docs/instructions.append.md index 6ca3663c..964740b5 100644 --- a/exercises/practice/anagram/.docs/instructions.append.md +++ b/exercises/practice/anagram/.docs/instructions.append.md @@ -1,6 +1,6 @@ # Instructions append -## Implementation +## Track specific instructions The result should be a string with anagrams separated by a comma (e.g., `"hello,world"`).