Skip to content

Commit

Permalink
#13 StringStorerからStringStoreBuilderに名前を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
TakenPt committed Mar 22, 2024
1 parent a5b3aef commit bfdbd86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Epub/KoeBook.Epub/Services/ScrapingNaroService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ private record SectionWithChapterTitle(string? title, Section section);

private async ValueTask<SectionWithChapterTitle> ReadPageAsync(string url, bool isRensai, string imageDirectory, CancellationToken ct)
{
var store = new StringStorer();
var store = new StringStoreBuilder();

var config = Configuration.Default.WithDefaultLoader();
using var context = BrowsingContext.New(config);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace KoeBook.Core.Utility
{
public class StringStorer
public class StringStoreBuilder
{
private StringBuilder _stringBuilder = new();
private List<string> _texts = new List<string>();
Expand Down

0 comments on commit bfdbd86

Please sign in to comment.