Skip to content

Commit 43b63f1

Browse files
authored
fixed a mistake (#1648)
1 parent eca2563 commit 43b63f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/jagrosh/jmusicbot/utils/FormatUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static String listOfVChannels(List<VoiceChannel> list, String query)
9494

9595
public static String listOfRoles(List<Role> list, String query)
9696
{
97-
String out = " Multiple text channels found matching \""+query+"\":";
97+
String out = " Multiple roles found matching \""+query+"\":";
9898
for(int i=0; i<6 && i<list.size(); i++)
9999
out+="\n - "+list.get(i).getName()+" (ID:"+list.get(i).getId()+")";
100100
if(list.size()>6)

0 commit comments

Comments
 (0)