summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMelvyn <melvyn.laily@gmail.com>2013-09-21 15:33:11 -0400
committerMelvyn <melvyn.laily@gmail.com>2013-09-21 15:33:11 -0400
commit41cf74fa53b1d315e2909e1ea62f4874727b578a (patch)
treeb119a62f6ef4d2a9dca2be41d154b85b42988003
parentdbfaa5ba52758cc826e710024f0be22404817e5c (diff)
corrections for C# doc
-rw-r--r--csharp.html.markdown3
1 files changed, 1 insertions, 2 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index 2854a49b..7239ca52 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -218,7 +218,7 @@ namespace Learning
// Others data structures to check out:
//
// Stack/Queue
- // Dictionary
+ // Dictionary (an implementation of a hash map)
// Read-only Collections
// Tuple (.Net 4+)
@@ -252,7 +252,6 @@ namespace Learning
~ Unary bitwise complement
<< Signed left shift
>> Signed right shift
- >>> Unsigned right shift
& Bitwise AND
^ Bitwise exclusive OR
| Bitwise inclusive OR