diff --git a/src/main/java/core/util/stats/consumers/ConsumerUtils.java b/src/main/java/core/util/stats/consumers/ConsumerUtils.java index 215d1803..63befda6 100644 --- a/src/main/java/core/util/stats/consumers/ConsumerUtils.java +++ b/src/main/java/core/util/stats/consumers/ConsumerUtils.java @@ -159,7 +159,7 @@ public static String averages(GeneratorUtils.AllCached cached) { public static String percentage(CountWrapper> list, StatsCtx ctx, Entity entity) { int per = Optional.ofNullable(ctx.count()).orElse(10); long numberToReach = topPercentage(list, ctx, per); - return "**# of %s to equal %s%% of scrobbles**: %d".formatted(entity.format().toLowerCase(Locale.ROOT), per, numberToReach); + return "**\# of %s to equal %s%% of scrobbles**: %d".formatted(entity.format().toLowerCase(Locale.ROOT), per, numberToReach); }