Cucumbers are not vegetables

Replaced cucumber with broccoli in modules2 since cucumbers are not vegetables
This commit is contained in:
Hex 2023-02-02 19:11:51 -05:00 committed by GitHub
parent ce7ffcd8e9
commit 8995f6598a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";
}
}