Skip to content

Commit

Permalink
adding missing this on ToText method
Browse files Browse the repository at this point in the history
  • Loading branch information
adecler committed Oct 20, 2022
1 parent c4b0bde commit ac38c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BHoM_Engine/Convert/ToText.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public static string ToText(this Type type, bool includePath = false, bool repla

/***************************************************/

public static string ToText(Enum item, bool includePath = false)
public static string ToText(this Enum item, bool includePath = false)
{
if (item == null)
return "null";
Expand Down

0 comments on commit ac38c93

Please sign in to comment.