diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2014-05-26 12:33:10 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2014-05-26 12:33:10 -0500 |
commit | 25dbc80b2d3961197b7781ef890eab8088b3bb29 (patch) | |
tree | d06801011565be6f7d73d6433206fe0fc002565f | |
parent | a4dc16c52fc01c98f7a17e9d832adbb014950def (diff) | |
parent | 4e6a111b6f08b8a11ccdf2cf236a48d50eefb1f4 (diff) |
Merge pull request #623 from discomethod/patch-1
C# - minor typo
-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 |