From 6dc7774c6ed736e0f420492a9424e777f2fbffc3 Mon Sep 17 00:00:00 2001 From: Remo Senekowitsch Date: Thu, 25 Jan 2024 21:42:15 +0100 Subject: [PATCH] anagram: Add note about unicode extension --- 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 739b6f2f2..85e50cb5f 100644 --- a/exercises/practice/anagram/.docs/instructions.append.md +++ b/exercises/practice/anagram/.docs/instructions.append.md @@ -1,4 +1,6 @@ # Instructions append +The Rust track extends the possible letters to be any unicode character, not just ASCII alphabetic ones. + You are going to have to adjust the function signature provided in the stub in order for the lifetimes to work out properly. This is intentional: what's there demonstrates the basics of lifetime syntax, and what's missing teaches how to interpret lifetime-related compiler errors.