diff --git a/src/commands/benchmark/BenchmarkCommandInfo.java b/src/commands/benchmark/BenchmarkCommandInfo.java index 08f2af2..676f288 100644 --- a/src/commands/benchmark/BenchmarkCommandInfo.java +++ b/src/commands/benchmark/BenchmarkCommandInfo.java @@ -24,7 +24,7 @@ public class BenchmarkCommandInfo extends BenchmarkCommand return output; } - public static KittyEmbed FormatInfoEmbed(BenchmarkEntry entry) + public static KittyEmbed formatInfoEmbed(BenchmarkEntry entry) { // Populate general embed info KittyEmbed embed = new KittyEmbed(); @@ -85,7 +85,7 @@ public class BenchmarkCommandInfo extends BenchmarkCommand List sortedEntries = manager.evaluateLevenshteinDistance(entries, searchString); BenchmarkEntry entry = sortedEntries.get(0); - KittyEmbed embed = FormatInfoEmbed(entry); + KittyEmbed embed = formatInfoEmbed(entry); if(entries.size() > 1) embed.footerText += " (Chose the " + entry.model + " from " + entries.size() + " potential components. To see others, try the command 'benchmark find " + searchString +"')";