fixed some defects in the iter-list implementation

This commit is contained in:
2024-06-05 08:06:39 +02:00
parent 188ea354ee
commit 8144122d2c
4 changed files with 16 additions and 22 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ type ExtIterator interface {
}
func errNoOperation(name string) error {
return fmt.Errorf("no %q function defined in the data-source", name)
return fmt.Errorf("no %s() function defined in the data-source", name)
}
func errInvalidDataSource() error {