fix: typos

TOO many typos
This commit is contained in:
2026-03-11 12:46:21 +03:00
parent 4bf23c6993
commit 821144a691
22 changed files with 165 additions and 165 deletions
+4 -4
View File
@@ -16,14 +16,14 @@ namespace GSS2.Test;
public partial class Program
{
private class ImagesStorateClearWorker : BackgroundService
private class ImagesStorageClearWorker : BackgroundService
{
private readonly ILogger<ImagesStorateClearWorker> _logger;
private readonly ILogger<ImagesStorageClearWorker> _logger;
private readonly IHostApplicationLifetime _applicationLifetime;
private readonly AmineContentCalibrationContext _context;
private readonly ImageStorageService _imageStorageService;
public ImagesStorateClearWorker(ILogger<ImagesStorateClearWorker> logger, IHostApplicationLifetime applicationLifetime, AmineContentCalibrationContext context, ImageStorageService imageStorageService)
public ImagesStorageClearWorker(ILogger<ImagesStorageClearWorker> logger, IHostApplicationLifetime applicationLifetime, AmineContentCalibrationContext context, ImageStorageService imageStorageService)
{
_logger = logger;
_applicationLifetime = applicationLifetime;
@@ -85,7 +85,7 @@ public partial class Program
builder.Services.AddAmineContentCalibrationContext(builder.Configuration);
builder.Services.AddImageStorageService(new DirectoryInfo("images"));
builder.Services.AddHostedService<ImagesStorateClearWorker>();
builder.Services.AddHostedService<ImagesStorageClearWorker>();
var host = builder.Build();