Skip to content

Commit feb6c9a

Browse files
committed
small simplification
1 parent 7dc74d2 commit feb6c9a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

htmlify.pl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,15 +432,14 @@ (Bool :$debug, Bool :$typegraph = False)
432432
say "Writing operator files";
433433
for $dr.lookup('operator', :by<kind>).list -> $doc {
434434
my $what = $doc.subkind;
435-
my $chunk = $doc.pod;
436435
my $op = $doc.name;
437436
my $pod = pod-with-title(
438437
"$what.tclc() $op operator",
439438
pod-block(
440439
"Documentation for $what $op, extracted from ",
441440
pod-link("the operators language documentation", "/language/operators")
442441
),
443-
@$chunk
442+
@($doc.pod),
444443
);
445444
spurt "html/op/$what/$op.html", p2h($pod);
446445
}

0 commit comments

Comments
 (0)