diff options
-rw-r--r-- | csharp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
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 |