From 115c87d8fd411fde4b9b798440ce247f598ee724 Mon Sep 17 00:00:00 2001 From: Melissa Auclaire Date: Wed, 4 Jan 2023 17:55:28 -0800 Subject: [PATCH] Fixes: #99 --- src/exercises/day-1/book-library.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/exercises/day-1/book-library.rs b/src/exercises/day-1/book-library.rs index d6c0285f..cab1879f 100644 --- a/src/exercises/day-1/book-library.rs +++ b/src/exercises/day-1/book-library.rs @@ -96,10 +96,10 @@ impl Library { } // ANCHOR: main +// This shows the desired behavior. Uncomment the code below and +// implement the missing methods. You will need to update the +// method signatures, including the "self" parameter! fn main() { - // This shows the desired behavior. Uncomment the code below and - // implement the missing methods. You will need to update the - // method signatures, including the "self" parameter! let library = Library::new(); //println!("Our library is empty: {}", library.is_empty());