summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorPratik Karki <predatoramigo@gmail.com>2019-05-05 22:16:16 +0545
committerGitHub <noreply@github.com>2019-05-05 22:16:16 +0545
commit745ea0f8051cf526828b565b71e734f9a3138142 (patch)
tree049d37971d07c166a7dd474a415ed7a3e9854772
parent64792e6fbfbdd5bee6ac613a9f787927a883425c (diff)
parentca326545134d0c43913dfa9f5f9c24e6871fd7aa (diff)
Merge pull request #3525 from kfrncs/patch-1
typo fix in 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 f27adf18..df6544d3 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -344,7 +344,7 @@ on a new line! ""Wow!"", the masses cried";
tryInt.ToString();
// Casting
- // Cast decimal 15 to a int
+ // Cast decimal 15 to an int
// and then implicitly cast to long
long x = (int) 15M;
}