aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/collection/sequence.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/collection/sequence.lux')
-rw-r--r--stdlib/source/library/lux/data/collection/sequence.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/data/collection/sequence.lux b/stdlib/source/library/lux/data/collection/sequence.lux
index 98869531f..5decabfde 100644
--- a/stdlib/source/library/lux/data/collection/sequence.lux
+++ b/stdlib/source/library/lux/data/collection/sequence.lux
@@ -29,11 +29,11 @@
(-> (-> a a) a (Sequence a)))
(//.pending [x (iterations f (f x))]))
-(def: .public (repeat x)
+(def: .public (repeated x)
{#.doc "Repeat a value forever."}
(All [a]
(-> a (Sequence a)))
- (//.pending [x (repeat x)]))
+ (//.pending [x (repeated x)]))
(def: .public (cycle [start next])
{#.doc (doc "Go over the elements of a list forever."