summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorken <kennethpatrickfrancis@gmail.com>2019-04-29 17:07:55 -0400
committerGitHub <noreply@github.com>2019-04-29 17:07:55 -0400
commitca326545134d0c43913dfa9f5f9c24e6871fd7aa (patch)
treec388ca1d712b431928c68fd9fdc65c44b4a3296f
parent2dde374091366cb098e5d405daa9c4c4c469b6dc (diff)
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;
}