Skip to content

Commit

Permalink
Made EnumExtensions internal to fix docs build problem
Browse files Browse the repository at this point in the history
  • Loading branch information
danheron committed Nov 16, 2023
1 parent cbdaaa5 commit eeea0f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Heron.MudCalendar/Extensions/EnumExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Heron.MudCalendar.Extensions;

public static class EnumExtensions
internal static class EnumExtensions
{
public static string ToDescriptionString(this Enum value)
internal static string ToDescriptionString(this Enum value)
{
var field = value.GetType().GetField(value.ToString());
if (field is null)
Expand Down

0 comments on commit eeea0f6

Please sign in to comment.