From 674b406c43d29af892f61be13a641e7454973d25 Mon Sep 17 00:00:00 2001 From: gbrochar Date: Sat, 5 Dec 2020 16:23:23 +0100 Subject: [PATCH] lint --- numbers/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/numbers/src/main.rs b/numbers/src/main.rs index 5443370..1a2f9f5 100644 --- a/numbers/src/main.rs +++ b/numbers/src/main.rs @@ -60,7 +60,7 @@ fn main() { println!("Median of input1 is {}", get_median(&input1)); match get_mode(&input1) { Some(v) => println!("Mode of input1 is {:?}", v), - None => println!("input1 has no mode.") + None => println!("input1 has no mode."), } println!("Vec input2 : {:?}", input2); @@ -68,6 +68,6 @@ fn main() { println!("Median of input2 is {}", get_median(&input2)); match get_mode(&input2) { Some(v) => println!("Mode of input2 is {:?}", v), - None => println!("input2 has no mode.") + None => println!("input2 has no mode."), } }