去除示例代码中的重复行 (#142)

This commit is contained in:
Wang Qilin 2023-08-24 15:37:01 +08:00 committed by GitHub
parent 05feb2014d
commit 6eb93da6e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 4 deletions

View File

@ -155,8 +155,6 @@ pub use crate::front_of_house::hosting;
pub fn eat_at_restaurant() {
hosting::add_to_waitlist();
hosting::add_to_waitlist();
hosting::add_to_waitlist();
}
# fn main() {}
```

View File

@ -13,8 +13,6 @@ pub use crate::front_of_house::hosting;
pub fn eat_at_restaurant() {
hosting::add_to_waitlist();
hosting::add_to_waitlist();
hosting::add_to_waitlist();
}
```