From 4817abcc1476e2d57965d19095d24ff805ba851c Mon Sep 17 00:00:00 2001
From: Piotr Spieker
Date: Thu, 12 Feb 2026 11:56:25 +0100
Subject: [PATCH] Mention struct-like variants in enums2 hint instead of
anonymous structs
---
rustlings-macros/info.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml
index ca3ecf1f..dd1f04be 100644
--- a/rustlings-macros/info.toml
+++ b/rustlings-macros/info.toml
@@ -440,7 +440,7 @@ dir = "08_enums"
test = false
hint = """
You can create enumerations that have different variants with different types
-such as anonymous structs, structs, a single string, tuples, no data, etc."""
+such as struct-like variants, regular structs, a single string, tuples, no data, etc."""
[[exercises]]
name = "enums3"