Improve code comment

This commit is contained in:
Patrick Farwick 2022-11-24 15:38:13 +00:00
parent 2304631482
commit 952c1c6b60
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ namespace Jellyfin.Plugin.Bookshelf.Providers.ComicInfo
if (isManga)
{
// Software like ComicTagger (https://github.com/comictagger/comictagger) uses
// this field for the original language name when tagging manga
// this field for the series name in the original language when tagging manga
book.OriginalTitle = title;
}
else

View File

@ -36,7 +36,7 @@ public class ComicInfoXmlUtilitiesTest
// story arcs. This field is used to specify an alternate series
// https://anansi-project.github.io/docs/comicinfo/documentation#alternateseries--alternatenumber--alternatecount
// However, software like ComicTagger (https://github.com/comictagger/comictagger) uses
// this field for the original language name when tagging manga
// this field for the series name in the original language when tagging manga
var actual = _uut.ReadComicBookMetadata(_document);
Assert.NotNull(actual);
Assert.Equal("進撃の巨人", actual!.OriginalTitle);