diff --git a/Discord/cogs/audio.py b/Discord/cogs/audio.py index e74c5e2bd7..843d816e51 100644 --- a/Discord/cogs/audio.py +++ b/Discord/cogs/audio.py @@ -359,7 +359,7 @@ async def radio_off(self, ctx): @audio.command(name = "search") @checks.not_forbidden() async def audio_search(self, ctx, *, search): - '''Find a Youtube video''' + '''Search for a YouTube video''' # TODO: Only invoke when parent command invoked with youtube or yt if command := ctx.bot.get_command("search youtube"): await ctx.invoke(command, search = search) diff --git a/Discord/cogs/search.py b/Discord/cogs/search.py index ad059c78e6..1bbe4e547c 100644 --- a/Discord/cogs/search.py +++ b/Discord/cogs/search.py @@ -865,7 +865,7 @@ async def yahoo(self, ctx, *search: str): @search.command(name = "youtube", aliases = ["yt"]) async def search_youtube(self, ctx, *, search: str): - '''Find a Youtube video''' + '''Search for a YouTube video''' # Note: audio search command invokes this command ydl = youtube_dl.YoutubeDL( {"default_search": "auto", "noplaylist": True, "quiet": True}