diff --git a/README.md b/README.md index ddfdb37..5559734 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ using EpicEnums; namespace SampleApp.NotVegetables; -public partial record Fruits : EpicEnum +public partial record Fruits : EpicEnum // It is very important that this is a partial record { public static Fruit Apple { get; } = new() { Name = "Apple", Description = "A red fruit", LikeAble = true }; public static Fruit Banana { get; } = new() { Name = "Banana", Description = "A yellow fruit", LikeAble = true };