From f3b64dc4f903b986cb289e5fe2a559d1000956c8 Mon Sep 17 00:00:00 2001 From: Dominic Date: Sun, 4 Nov 2018 00:21:47 -1000 Subject: [PATCH] Fixed compilation error/typo (#20933) * Fixed compilation error Variable not named. Corrected it to match. * Fixed formatting --- guide/english/csharp/return/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/csharp/return/index.md b/guide/english/csharp/return/index.md index 1086e3d2ae..85a7b9f674 100644 --- a/guide/english/csharp/return/index.md +++ b/guide/english/csharp/return/index.md @@ -21,7 +21,7 @@ class Calc { int a = 4; int b = 3; - int sum = Sum(a, b); + int result = Sum(a, b); Console.WriteLine($"The sum of {a} and {b} is {result}"); // To keep the console from closing @@ -35,4 +35,4 @@ class Calc ## Output: ``` > The sum of 4 and 3 is 7 -`` +```