From 55156f4d907ac4c3fba83310aa3fee9eee15e83e Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Tue, 25 Feb 2020 23:24:11 +0000 Subject: [PATCH] --- Style-Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Style-Guide.md b/Style-Guide.md index 665b784..bc7c71a 100644 --- a/Style-Guide.md +++ b/Style-Guide.md @@ -71,7 +71,7 @@ All code is in `namespace SemiColinGames`. There are no sub-namespaces, with the ### Source files & class names -Unlike in Java, source files in C# need not contain only a single top-level class. It is fine to group multiple closely-related classes or structs into a single file, if it makes sense to do so. +Unlike in Java, source files in C# may contain more than one top-level class. It is fine to group multiple closely-related classes or structs into a single file, if it makes sense to do so. If a file contains only a single class, the filename should match the name of that class.