aboutsummaryrefslogtreecommitdiff
path: root/std/prelude/iterators.pk
diff options
context:
space:
mode:
Diffstat (limited to 'std/prelude/iterators.pk')
-rw-r--r--std/prelude/iterators.pk2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/prelude/iterators.pk b/std/prelude/iterators.pk
index 1403b55..1e60379 100644
--- a/std/prelude/iterators.pk
+++ b/std/prelude/iterators.pk
@@ -159,7 +159,7 @@ pub func unzip[T, U](self: Iter[(T, U)]): (Iter[T], Iter[U])
# equivalent of collect. useful for type conversion
pub func to[T](self: LazyIter[T]): list[T]
-pub func to(self: LazyIter[chr]): str
+pub func to(self: LazyIter[char]): str
pub type BoundIter[T] = class
next(mut Self): T?