summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authorMelvyn <melvyn.laily@gmail.com>2013-09-21 15:29:03 -0400
committerMelvyn <melvyn.laily@gmail.com>2013-09-21 15:29:03 -0400
commitdbfaa5ba52758cc826e710024f0be22404817e5c (patch)
tree0d0d990a450a8b12721cf93be2c1538c0a3984e0 /csharp.html.markdown
parenta2b14fcedfaa01d6dea7d7682b82fc5ddae9b84d (diff)
typo (not instead of note) for C# doc
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 c6394974..2854a49b 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -168,7 +168,7 @@ namespace Learning
Console.WriteLine("Not nullable variable: " + notNullable);
// Var - compiler will choose the most appropriate type based on value
- // Please not that this does not remove type safety.
+ // Please note that this does not remove type safety.
// In this case, the type of fooImplicit is known to be a bool at compile time
var fooImplicit = true;