From 2f0edcd18630a1c9571aa5cc692579900ba783f5 Mon Sep 17 00:00:00 2001 From: Mark Michaelis Date: Thu, 31 Aug 2023 16:55:05 +0100 Subject: [PATCH] Minor edit --- src/Chapter05/Listing05.30.RethrowingAnException.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Chapter05/Listing05.30.RethrowingAnException.cs b/src/Chapter05/Listing05.30.RethrowingAnException.cs index c8555a349..65bf53add 100644 --- a/src/Chapter05/Listing05.30.RethrowingAnException.cs +++ b/src/Chapter05/Listing05.30.RethrowingAnException.cs @@ -17,7 +17,7 @@ public static void Main() catch (FormatException exception) { Console.WriteLine( - "A FormateException was thrown"); + "A FormatException was thrown"); } #region INCLUDE // ...