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:
Jelte Fennema 2022-01-03 17:11:11 +01:00 committed by GitHub
parent 4a7b5fa3b6
commit 772f8ba1cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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