diff options
author | Spurlow <Spurlow@users.noreply.github.com> | 2015-11-27 11:40:52 +0700 |
---|---|---|
committer | Spurlow <Spurlow@users.noreply.github.com> | 2015-11-27 11:40:52 +0700 |
commit | 8a7d5b718642712fbc72b0c2f10a455ef23a5932 (patch) | |
tree | 67b2ea43ff47dc3b6831e21c7a00e72f0a1f7d7c | |
parent | f70f98b5cba1b3f481dc3669a8e7065b99dbf14c (diff) | |
parent | bb1e07bbb7d6555d8875c03b82c5a05f8cf06c37 (diff) |
Merge pull request #2032 from KateRita/CSharp
[C#/en] Grammar/clarity update in comments about File Naming
-rw-r--r-- | csharp.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index dfdd98de..677c2591 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -45,8 +45,8 @@ using System.Data.Entity; // Using this code from another source file: using Learning.CSharp; namespace Learning.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. + // 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. public class LearnCSharp { // BASIC SYNTAX - skip to INTERESTING FEATURES if you have used Java or C++ before |