Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use uniq() again, because unique() does not exist
  • Loading branch information
moritz committed Dec 21, 2014
1 parent a71b7ec commit ac21f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Perl6/TypeGraph/Viz.pm
Expand Up @@ -38,7 +38,7 @@ class Perl6::TypeGraph::Viz {
@.types .= unique;

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

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

0 comments on commit ac21f7f

Please sign in to comment.