mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-06 14:56:54 +02:00
Use correct name for enum in comment (#4188)
The name used in the comment for the BikeBrand enum was incorrect.
This commit is contained in:
@@ -760,7 +760,7 @@ on a new line! ""Wow!"", the masses cried";
|
|||||||
Gitane // 43
|
Gitane // 43
|
||||||
}
|
}
|
||||||
// We defined this type inside a Bicycle class, so it is a nested type
|
// 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
|
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)
|
* [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)
|
* [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)
|
* [freeCodeCamp - C# Tutorial for Beginners](https://www.youtube.com/watch?v=GhQdlIFylQ8)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user