summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2014-05-26 12:33:10 -0500
committerLevi Bostian <levi.bostian@gmail.com>2014-05-26 12:33:10 -0500
commit25dbc80b2d3961197b7781ef890eab8088b3bb29 (patch)
treed06801011565be6f7d73d6433206fe0fc002565f
parenta4dc16c52fc01c98f7a17e9d832adbb014950def (diff)
parent4e6a111b6f08b8a11ccdf2cf236a48d50eefb1f4 (diff)
Merge pull request #623 from discomethod/patch-1
C# - minor typo
-rw-r--r--csharp.html.markdown2
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