Skip to content

Commit

Permalink
change Access Modifiers of MakePieChart
Browse files Browse the repository at this point in the history
  • Loading branch information
wasd52030 committed Oct 18, 2024
1 parent 9be5093 commit 536d87b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DataAnalysis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ await File.WriteAllTextAsync(
);
}

public static void MakePieChart(IOrderedEnumerable<IGrouping<string, string>> baseSeq)
static void MakePieChart(IOrderedEnumerable<IGrouping<string, string>> baseSeq)
{
var plotSeq = baseSeq.Where(item => item.Key != "unknown")
.Select(item => new { key = item.Key, count = item.Count() })
Expand Down

0 comments on commit 536d87b

Please sign in to comment.