Skip to content

Commit 4789af9

Browse files
committed
Fixes errors and reflows
1 parent 08b0f48 commit 4789af9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

doc/Type/Mix.pod6

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ values become the associated numeric weights:
6262
6363
=head1 Operators
6464
65-
C<Mix>es can use all kind of set operators returning either C<Bool> or other C<Mix>es:
65+
C<Mix>es can use all kind of set operators returning either C<Bool> or
66+
other C<Mix>es:
6667
6768
=begin code
6869
my $this-mix = (sugar => ⅓, spice => ¼, all-things-nice => ¾);
@@ -74,7 +75,7 @@ say $that-mix (+) $this-mix; # OUTPUT: «Bag(spice(2), sugar)␤»
7475
=end code
7576
7677
With their equivalent Unicode operators:
77-
=begin code :preamble<my ($this-mix, $that-mix);
78+
=begin code :preamble<my ($this-mix, $that-mix);>
7879
say $that-mix ⊂ $this-mix; # OUTPUT: «True␤»
7980
say $that-mix ⊖ $this-mix; # OUTPUT: «set(all-things-nice)␤»
8081
say $that-mix ⊎ $this-mix; # OUTPUT: «Bag(spice(2), sugar)␤»

0 commit comments

Comments
 (0)