Fixed a typo-error in 'src/SUMMARY.md'.

This commit is contained in:
Peng Hailin, 2023-12-19 22:00:27 +08:00
parent 1ae19e883e
commit cda727fba7
3 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1 @@
pub mod vegetables;

View File

@ -0,0 +1,2 @@
#[derive(Debug)]
pub struct Asparagus {}

View File

@ -1,3 +1,8 @@
use crate::garden::vegetables::Asparagus;
pub mod garden;
fn main() { fn main() {
println!("Hello, world!"); let plant = Asparagus {};
println! ("I'm growing {:?}!", plant);
} }