Skip to content
This repository has been archived by the owner on Sep 28, 2020. It is now read-only.

Fixed a few small spelling errors. #292

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions YoutubeExtractor/YoutubeExtractor/DownloadUrlResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public static class DownloadUrlResolver
/// to the decrypted URL. Use this method, if you have decryptSignature in the <see
/// cref="GetDownloadUrls" /> method set to false.
/// </summary>
/// <param name="videoInfo">The video info which's downlaod URL should be decrypted.</param>
/// <param name="videoInfo">The video info which's download URL should be decrypted.</param>
/// <exception cref="YoutubeParseException">
/// There was an error while deciphering the signature.
/// </exception>
Expand Down Expand Up @@ -331,4 +331,4 @@ private class ExtractionInfo
public Uri Uri { get; set; }
}
}
}
}
4 changes: 2 additions & 2 deletions YoutubeExtractor/YoutubeExtractor/VideoDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public VideoDownloader(VideoInfo video, string savePath, int? bytesToDownload =
{ }

/// <summary>
/// Occurs when the downlaod progress of the video file has changed.
/// Occurs when the download progress of the video file has changed.
/// </summary>
public event EventHandler<ProgressEventArgs> DownloadProgressChanged;

Expand Down Expand Up @@ -78,4 +78,4 @@ public override void Execute()
this.OnDownloadFinished(EventArgs.Empty);
}
}
}
}