diff --git a/exercise/errors/src/main.rs b/exercise/errors/src/main.rs index eddd3ab..eea299f 100644 --- a/exercise/errors/src/main.rs +++ b/exercise/errors/src/main.rs @@ -1,6 +1,8 @@ // START IN lib.rs! use aquarium::Dolphin; +// Silence some warnings so they don't distract from the exercise. +#[allow(clippy::vec_init_then_push)] // (You already did #1 in lib.rs, right?) //