summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authorKate Reading <katerita@gmail.com>2015-11-19 11:23:19 -0800
committerKate Reading <katerita@gmail.com>2015-11-19 11:23:19 -0800
commitbb1e07bbb7d6555d8875c03b82c5a05f8cf06c37 (patch)
tree837a48c4a026407be14f9bfa15962067bebbdcd8 /csharp.html.markdown
parent9e4274f7c79d89e0069637f867f860a702a72e51 (diff)
Clarified grammar in LearnCSharp comment about naming files relative to the classes they contain. Otherwise the two comment lines blended together and were a little comfusing.
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r--csharp.html.markdown4
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