diff --git a/Shoko.Server/Utilities/AVDumpHelper.cs b/Shoko.Server/Utilities/AVDumpHelper.cs index eb8fef373..686295aee 100644 --- a/Shoko.Server/Utilities/AVDumpHelper.cs +++ b/Shoko.Server/Utilities/AVDumpHelper.cs @@ -135,13 +135,13 @@ public static bool UpdateAVDump() => /// Run AVDump for a file, streaming events from the process, and also /// storing some results in the database if successful. /// - /// The assosiated video for the file. + /// The associated video for the file. /// The command id if this operation was ran from /// the queue. /// The dump results for v1 compatibility. public static AVDumpSession DumpFiles(IEnumerable> videos, int? commandId = null) { - // Guard against stupidity and/or unforseen errors. + // Guard against stupidity and/or unforeseen errors. var videoDict = videos.ToDictionary(v => v.Key, v => v.Value); if (videoDict.Count == 0) return new("Cannot dump 0 files.");