Fix cyrillic C

This commit is contained in:
DarthSim
2025-09-18 20:32:35 +03:00
parent 833f2bb082
commit b5d2cce37a
2 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ import (
// NOTE: this will be called pipeline.Context in the separate package
type Context struct {
Сtx context.Context
Ctx context.Context
// Global processing configuration which could be used by individual steps
Config *pipeline.Config
@@ -127,7 +127,7 @@ func (r *Runner) newContext(
imgdata imagedata.ImageData,
) Context {
pctx := Context{
Сtx: ctx,
Ctx: ctx,
Config: r.config,
Img: img,
PO: po,

View File

@@ -198,5 +198,5 @@ func watermark(c *Context) error {
return nil
}
return applyWatermark(c.Сtx, c.Img, c.WatermarkProvider, c.PO, c.DprScale, 1)
return applyWatermark(c.Ctx, c.Img, c.WatermarkProvider, c.PO, c.DprScale, 1)
}