change make_sausage in modules1.rs to not be private

This commit is contained in:
Shmulik Cohen 2021-08-26 23:30:24 +03:00
parent 198e3148f5
commit 4db29005fd

View File

@ -9,7 +9,7 @@ mod sausage_factory {
String::from("Ginger")
}
pub fn make_sausage() {
fn make_sausage() {
get_secret_recipe();
println!("sausage!");
}