Skip to content

Commit ac21f7f

Browse files
committed
use uniq() again, because unique() does not exist
1 parent a71b7ec commit ac21f7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Perl6/TypeGraph/Viz.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Perl6::TypeGraph::Viz {
3838
@.types .= unique;
3939

4040
# Find a new batch of seed nodes
41-
@seeds = unique(@seeds>>.sub, @seeds>>.doers);
41+
@seeds = uniq(@seeds>>.sub, @seeds>>.doers);
4242

4343
# If we're not growing the node pool, stop trying
4444
last if @.types <= @prev or !@seeds;

0 commit comments

Comments
 (0)