Skip to content

Commit

Permalink
Fix typo in poles
Browse files Browse the repository at this point in the history
  • Loading branch information
Cadiducho committed Oct 12, 2023
1 parent e960b5f commit 7b0cf48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ private static InlineKeyboardButton rankingGlobal(String fecha, String finInterv
private static InlineKeyboardButton topGrupo(String fecha, String finIntervalo) {
final InlineKeyboardButton topGrupo = new InlineKeyboardButton();
if (finIntervalo != null) {
topGrupo.setText("Top del grupos (int.)");
topGrupo.setText("Top del grupo (int.)");
} else {
topGrupo.setText("Top del grupos");
topGrupo.setText("Top del grupo");
}
topGrupo.setCallbackData(TOP_GRUPO + "#" + fecha + "#" + finIntervalo);
return topGrupo;
Expand Down

0 comments on commit 7b0cf48

Please sign in to comment.