From 3f39a3dcc3d67566b9261885566c6d7a9d2f7e3c Mon Sep 17 00:00:00 2001 From: Pcornat Date: Thu, 12 Feb 2026 20:38:27 +0100 Subject: [PATCH] Replace println! by todo! --- src/sheet.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sheet.rs b/src/sheet.rs index 5c924e8..b5c1cf0 100644 --- a/src/sheet.rs +++ b/src/sheet.rs @@ -223,10 +223,10 @@ impl CharacterSheet { impl CharacteristicType { fn check(&self) { match self { - CharacteristicType::Address(_) => println!("Rules for address"), - CharacteristicType::Stamina(_) => println!("Rules for stamina"), - CharacteristicType::Luck(_) => println!("Rules for luck"), - CharacteristicType::Skill(_) => println!("Rules for skill"), + CharacteristicType::Address(_) => todo!("Rules for address"), + CharacteristicType::Stamina(_) => todo!("Rules for stamina"), + CharacteristicType::Luck(_) => todo!("Rules for luck"), + CharacteristicType::Skill(_) => todo!("Rules for skill"), } } }