diff --git a/Examples.md b/Examples.md index c6a19f5..62816a1 100644 --- a/Examples.md +++ b/Examples.md @@ -1370,7 +1370,9 @@ fn main() { } acc } - println!("Sum of odd numbers up to 9 (excluding): {}", sum_odd_numbers(9)); + println!("Sum of odd numbers up to 9 (excluding): {}", + sum_odd_numbers(9) + ); } ```