From 9d852c13479324b5e21a90d23b40e789d4197a6d Mon Sep 17 00:00:00 2001 From: Alexander Hans Date: Mon, 20 Jan 2025 10:19:05 +0100 Subject: [PATCH] improve wording --- exercises/practice/anagram/anagram_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/practice/anagram/anagram_test.cpp b/exercises/practice/anagram/anagram_test.cpp index e6c1f6d11..b109dc5f7 100644 --- a/exercises/practice/anagram/anagram_test.cpp +++ b/exercises/practice/anagram/anagram_test.cpp @@ -12,8 +12,8 @@ using namespace std; // Anagram exercise test case data version 1.5.0 -// This class is a helper to support any container to be used. It takes -// an std::unordered_set of expected values and provides a method +// This class is a helper to allow the solution to return any container type. It +// takes an std::unordered_set of expected values and provides a method // `is_identical_to` that checks if a given container is as expected. Since the // method is a method template, it works for any container. class ExpectedSet {