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.

This commit is contained in:
Kate Reading 2015-11-19 11:23:19 -08:00
parent 9e4274f7c7
commit bb1e07bbb7

View File

@ -45,8 +45,8 @@ using System.Data.Entity;
// Using this code from another source file: using Learning.CSharp; // Using this code from another source file: using Learning.CSharp;
namespace Learning.CSharp namespace Learning.CSharp
{ {
// Each .cs file should at least contain a class with the same name as the file // 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. // You're allowed to do otherwise, but shouldn't for sanity.
public class LearnCSharp public class LearnCSharp
{ {
// BASIC SYNTAX - skip to INTERESTING FEATURES if you have used Java or C++ before // BASIC SYNTAX - skip to INTERESTING FEATURES if you have used Java or C++ before