summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLaoujin <woutervs@hotmail.com>2015-01-31 20:21:52 +0100
committerLaoujin <woutervs@hotmail.com>2015-01-31 20:21:52 +0100
commit937e6dad51446cf47c85156e4af0696efdcac43b (patch)
tree593560066e05733efb9e92cba78bf0c3b4fa968f
parent928b8404aa7d47dbc50351f48fdca7334bb32647 (diff)
[CSharp/en]namespaces can have multiple levels with dots
-rw-r--r--csharp.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index ad43e607..4a238f25 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -35,7 +35,7 @@ using System.Threading.Tasks;
using System.IO;
// defines scope to organize code into "packages"
-namespace Learning
+namespace LearningXInYMinutes.CSharp
{
// Each .cs file should at least contain a class with the same name as the file
// you're allowed to do otherwise, but shouldn't for sanity.