From 4e6a111b6f08b8a11ccdf2cf236a48d50eefb1f4 Mon Sep 17 00:00:00 2001 From: discomethod Date: Mon, 26 May 2014 18:16:11 +0100 Subject: [PATCH] minor typo --- csharp.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp.html.markdown b/csharp.html.markdown index 81eb467d..4fa8deba 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -307,7 +307,7 @@ on a new line! ""Wow!"", the masses cried"; // try parse will default to type default on failure // in this case: 0 int tryInt; - if (int.TryParse("123", out tryInt)) // Funciton is boolean + if (int.TryParse("123", out tryInt)) // Function is boolean Console.WriteLine(tryInt); // 123 // Convert Integer To String