Skip to content

Commit

Permalink
Fix copy/paste error on nuget stats summary
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Sep 28, 2024
1 parent 98e7f6d commit 924d058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Records.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ public class OpenSourceSummary(OpenSourceTotals totals)
public string Authors => totals.Authors.ToMetric(decimals: 1);
public string Repositories => totals.Repositories.ToMetric(decimals: 1);
public string Packages => totals.Packages.ToMetric(decimals: 1);
public string Downloads => totals.Packages.ToMetric(decimals: 1);
public string Downloads => totals.Downloads.ToMetric(decimals: 1);
}
}

0 comments on commit 924d058

Please sign in to comment.