style: ID instead of Id

This commit is contained in:
2026-02-06 23:45:29 -05:00
parent a2355fcd56
commit 8b80cea32b
3 changed files with 6 additions and 6 deletions

View File

@@ -33,7 +33,7 @@ func (b convertedProcess[T]) Set(r Repr) error {
return b.process.Set(t)
}
return fmt.Errorf("Incorrent format '%s' for engine '%s'.", r.Id(), b.inType)
return fmt.Errorf("Incorrent format '%s' for engine '%s'.", r.ID(), b.inType)
}
func (b convertedProcess[T]) Step(i int) bool {