From bcfa28fe03b385c97e38544f739c204207085356 Mon Sep 17 00:00:00 2001 From: GrantiVersace Date: Fri, 23 Nov 2018 20:18:39 -0600 Subject: [PATCH] Fixed grammatical errors in last paragraph (#23457) --- guide/english/csharp/try-catch/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/csharp/try-catch/index.md b/guide/english/csharp/try-catch/index.md index 5db6663d6a..9e9f9b82ef 100644 --- a/guide/english/csharp/try-catch/index.md +++ b/guide/english/csharp/try-catch/index.md @@ -97,8 +97,8 @@ catch(Exception exception) The variable declared after the type of exception will contain all the data of the exception and can be used within the ```Catch``` block. ## Finally block -The finally block is **always** run at the end after the ```Try``` and ```Catch``` blocks. This section is usually used to when something **must** happen at the end regardless if an exception was thrown or not. -For example, say we need a variable to always be re-initalised back to a specific number after it has been manipulated all the time. +The finally block is **always** run at the end after the ```Try``` and ```Catch``` blocks. This section is usually used when something **must** happen at the end, regardless if an exception was thrown or not. +For example, say we need a variable to always be re-initialised back to a specific number after it has been manipulated. ```csharp int initalValue = 12; try