diff --git a/docs/index.html b/docs/index.html index 1f61a7e..e27a8d1 100644 --- a/docs/index.html +++ b/docs/index.html @@ -137,8 +137,8 @@

Simple. Powerful. Modern.

.WithEmbedMetadata() .WithEmbedThumbnail(); -ytdlp.OnProgressDownload += (s, e) => Console.WriteLine($"Progress: {e.Percent:F2}%"); -ytdlp.OnCompleteDownload += (s, msg) => Console.WriteLine($"Download complete: {msg}"); +ytdlp.ProgressDownload += (s, e) => Console.WriteLine($"Progress: {e.Percent:F2}%"); +ytdlp.DownloadCompleted += (s, msg) => Console.WriteLine($"Download complete: {msg}"); await ytdlp.DownloadAsync("https://www.youtube.com/watch?v=ABCDEFGH");