summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authordiscomethod <kolkork@gmail.com>2014-05-26 18:16:11 +0100
committerdiscomethod <kolkork@gmail.com>2014-05-26 18:16:11 +0100
commit4e6a111b6f08b8a11ccdf2cf236a48d50eefb1f4 (patch)
treed06801011565be6f7d73d6433206fe0fc002565f /csharp.html.markdown
parenta4dc16c52fc01c98f7a17e9d832adbb014950def (diff)
minor typo
Diffstat (limited to 'csharp.html.markdown')
-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