diff --git a/itlib/empty.go b/itlib/empty.go index fd4dcda..463a890 100644 --- a/itlib/empty.go +++ b/itlib/empty.go @@ -34,7 +34,7 @@ func (it EmptyIterator[T]) Value() (v T) { return } -// Empty returns an Iterator that is always exhausted. +// Empty returns a new [EmptyIterator] value. func Empty[T any]() itkit.Iterator[T] { return &EmptyIterator[T]{} }