From 2d5d70693a879f07fcd941c21da3a3760cb81db6 Mon Sep 17 00:00:00 2001 From: mo8it Date: Mon, 8 Jul 2024 15:05:58 +0200 Subject: [PATCH] errors3: Add a comment to prevent changing the wrong line --- exercises/13_error_handling/errors3.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/13_error_handling/errors3.rs b/exercises/13_error_handling/errors3.rs index 33a7b877..8e8c38a2 100644 --- a/exercises/13_error_handling/errors3.rs +++ b/exercises/13_error_handling/errors3.rs @@ -19,6 +19,7 @@ fn main() { let mut tokens = 100; let pretend_user_input = "8"; + // Don't change this line. let cost = total_cost(pretend_user_input)?; if cost > tokens {