Skip to content

Commit

Permalink
fix(#3): Fix function and struct names
Browse files Browse the repository at this point in the history
  • Loading branch information
borisershov committed May 22, 2024
1 parent 550522c commit a2fdd82
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions routines/anonymizer/anonymizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
progressreader "github.com/nixys/nxs-data-anonymizer/modules/progress_reader"
)

type anomymizeSettings struct {
type anonymizeSettings struct {
c context.Context
l *logrus.Logger
pr *progressreader.ProgressReader
Expand Down Expand Up @@ -55,8 +55,8 @@ func Runtime(app appctx.App) error {
timer.Stop()
}

if err := anomymize(
anomymizeSettings{
if err := anonymize(
anonymizeSettings{
c: cx,
l: cc.Log,
pr: pr,
Expand Down Expand Up @@ -112,7 +112,7 @@ func Runtime(app appctx.App) error {
}
}

func anomymize(st anomymizeSettings) error {
func anonymize(st anonymizeSettings) error {

// Anonymizer reader
var ar io.Reader
Expand Down

0 comments on commit a2fdd82

Please sign in to comment.