From 8995f6598a0aa3500a2b166f542462b5fc6322e0 Mon Sep 17 00:00:00 2001 From: Hex <91999501+HexExecute@users.noreply.github.com> Date: Thu, 2 Feb 2023 19:11:51 -0500 Subject: [PATCH] Cucumbers are not vegetables Replaced cucumber with broccoli in modules2 since cucumbers are not vegetables --- exercises/modules/modules2.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/modules/modules2.rs b/exercises/modules/modules2.rs index c30a3897..7e042278 100644 --- a/exercises/modules/modules2.rs +++ b/exercises/modules/modules2.rs @@ -8,7 +8,7 @@ mod delicious_snacks { // TODO: Fix these use statements use self::fruits::PEAR as ??? - use self::veggies::CUCUMBER as ??? + use self::veggies::BROCCOLI as ??? mod fruits { pub const PEAR: &'static str = "Pear"; @@ -16,7 +16,7 @@ mod delicious_snacks { } mod veggies { - pub const CUCUMBER: &'static str = "Cucumber"; + pub const BROCCOLI: &'static str = "Broccoli"; pub const CARROT: &'static str = "Carrot"; } }