summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authorRobson Alves <nosbor89@hotmail.com>2015-10-12 07:03:18 -0300
committerRobson Alves <nosbor89@hotmail.com>2015-10-12 07:03:18 -0300
commitda6fc10553b457ef0d8ceb4f8898dfb2c5ddbbdd (patch)
treea0dd61a1e8822401e7048437c08b1a64681d0104 /csharp.html.markdown
parent1ba31a4a46a34dacdc85780e5b76507336cf456c (diff)
Include and correct csharp docs
Correct the csharp doc en-us language which was written intialize to initialize and include new more translated words to pt-br language.
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 02650038..811c2280 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -159,7 +159,7 @@ on a new line! ""Wow!"", the masses cried";
// List<datatype> <var name> = new List<datatype>();
List<int> intList = new List<int>();
List<string> stringList = new List<string>();
- List<int> z = new List<int> { 9000, 1000, 1337 }; // intialize
+ List<int> z = new List<int> { 9000, 1000, 1337 }; // initialize
// The <> are for generics - Check out the cool stuff section
// Lists don't default to a value;