Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
s/push/append/ roles to todo list
Otherwise we sneak extra Arrays into the list of roles that need doing.
  • Loading branch information
FROGGS committed Oct 2, 2015
1 parent b5886ca commit 6564ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htmlify.p6
Expand Up @@ -258,7 +258,7 @@ multi write-type-source($doc) {
while @roles-todo.shift -> $role {
next unless %routines-by-type{$role};
next if %roles-seen{$role}++;
@roles-todo.push: $role.roles;
@roles-todo.append: $role.roles;
$pod.contents.push:
pod-heading("Routines supplied by role $role"),
pod-block(
Expand Down

0 comments on commit 6564ace

Please sign in to comment.