summaryrefslogtreecommitdiff
path: root/internal/processing/list/list.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/processing/list/list.go')
-rw-r--r--internal/processing/list/list.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/internal/processing/list/list.go b/internal/processing/list/list.go
index f192beb60..0003816fb 100644
--- a/internal/processing/list/list.go
+++ b/internal/processing/list/list.go
@@ -23,13 +23,13 @@ import (
)
type Processor struct {
- state *state.State
- tc typeutils.TypeConverter
+ state *state.State
+ converter *typeutils.Converter
}
-func New(state *state.State, tc typeutils.TypeConverter) Processor {
+func New(state *state.State, converter *typeutils.Converter) Processor {
return Processor{
- state: state,
- tc: tc,
+ state: state,
+ converter: converter,
}
}