diff options
author | Jelte Fennema <github-tech@jeltef.nl> | 2022-01-03 17:11:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 00:11:11 +0800 |
commit | 772f8ba1cdabf85e807d82c123caebe8e4851605 (patch) | |
tree | c1b3350dca37e76a84aeb0a3d1b7963aae725ae0 /csharp.html.markdown | |
parent | 4a7b5fa3b61a0e45d4c0cdd4c487166be5166141 (diff) |
Use correct name for enum in comment (#4188)
The name used in the comment for the BikeBrand enum was incorrect.
Diffstat (limited to 'csharp.html.markdown')
-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 ddb0c62a..c85acb1b 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -760,7 +760,7 @@ on a new line! ""Wow!"", the masses cried"; Gitane // 43 } // We defined this type inside a Bicycle class, so it is a nested type - // Code outside of this class should reference this type as Bicycle.Brand + // Code outside of this class should reference this type as Bicycle.BikeBrand public BikeBrand Brand; // After declaring an enum type, we can declare the field of this type @@ -1348,4 +1348,4 @@ namespace Csharp7 * [LINQ Pocket Reference](http://shop.oreilly.com/product/9780596519254.do) * [Windows Forms Programming in C#](http://www.amazon.com/Windows-Forms-Programming-Chris-Sells/dp/0321116208) * [freeCodeCamp - C# Tutorial for Beginners](https://www.youtube.com/watch?v=GhQdlIFylQ8) -
\ No newline at end of file + |