Skip to content

Commit 73a5f1c

Browse files
committed
Remove pointless headings
1 parent 4798c80 commit 73a5f1c

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

lib/Language/Sets_Bags_and_Mixes.pod

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ An I<immutable> set of unique values or objects. These values can be
2626
accessed via the C<{ }> postcircumfix, and always have a value of either
2727
C<True> or C<False>. For a mutable set, see L<SetHash>.
2828
29-
=head2 Operators
30-
31-
=head3 sub set
29+
=head2 sub set
3230
3331
sub set(*@args --> Set)
3432
@@ -52,15 +50,13 @@ mutable collection of weighted values, see L<BagHash>.
5250
5351
bag('a', 'b', 'c', 'a', 'd', 'a')<a> === 3
5452
55-
=head2 Operators
56-
57-
=head3 sub bag
53+
=head2 sub bag
5854
5955
sub bag(*@args --> Bag)
6056
6157
Creates a new C<Bag> from C<@args>.
6258
63-
=head2 class BagHash
59+
=head1 class BagHash
6460
6561
class BagHash does Baggy { }
6662
@@ -78,9 +74,7 @@ via the C<{ }> postcircumfix. For a mutable collection, see L<MixHash>.
7874
# TODO: More useful example
7975
{a => 1.3, b => 4.8, c => 8}.Mix<b> == 4.8 # True
8076
81-
=head2 Operators
82-
83-
=head3 sub mix
77+
=head2 sub mix
8478
8579
sub mix(*@args --> Mix)
8680

0 commit comments

Comments
 (0)