diff --git a/src/input/ytdl_src.rs b/src/input/ytdl_src.rs
index 90cce90..f03e356 100644
--- a/src/input/ytdl_src.rs
+++ b/src/input/ytdl_src.rs
@@ -21,6 +21,8 @@ const YOUTUBE_DL_COMMAND: &str = if cfg!(feature = "youtube-dlc") {
};
/// Creates a streamed audio source with `youtube-dl` and `ffmpeg`.
+///
+/// Uses `youtube-dlc` if the `youtube-dlc` feature is enabled.
pub async fn ytdl(uri: &str) -> Result {
_ytdl(uri, &[]).await
}
@@ -106,7 +108,7 @@ pub(crate) async fn _ytdl(uri: &str, pre_args: &[&str]) -> Result {
))
}
-/// Creates a streamed audio source from YouTube search results with `youtube-dl`,`ffmpeg`, and `ytsearch`.
+/// Creates a streamed audio source from YouTube search results with `youtube-dl(c)`,`ffmpeg`, and `ytsearch`.
/// Takes the first video listed from the YouTube search.
pub async fn ytdl_search(name: &str) -> Result {
ytdl(&format!("ytsearch1:{}", name)).await