Skip to content

Commit 4a03fe8

Browse files
committed
Trying to find out stuff about TODOs, refs #2277
1 parent 81981bd commit 4a03fe8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

doc/Language/setbagmix.pod6

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
=SUBTITLE Unordered collections of unique and weighted objects in Perl 6
66
7-
Often you want to collect objects in a container but you do not care
7+
You might want to collect objects in a container but you do not care
88
about the order of these objects. For such cases, Perl 6 provides the
99
I<unordered> collection types L<Set|/type/Set>,
1010
L<SetHash|/type/SetHash>, L<Bag|/type/Bag>, L<BagHash|/type/BagHash>,
@@ -80,10 +80,9 @@ L<Set|/type/Set>, such as unions and set differences. Other operations
8080
include boolean checks, like whether an object is an element of a
8181
C<Set>, or whether one C<Set> is a subset of another C<Set>.
8282
83-
These infixes can be written using the UTF-8 character that represents
84-
the function (like L<∈|/routine/∈>, or L<∪|/routine/∪>), or they can be
85-
written with an equivalent ASCII version like L<(elem)|/routine/(elem)>
86-
or L<(^)|/routine/⊖>.
83+
These infixes can be written using the UTF-8 character that represents the
84+
function (like L<∈|/routine/∈>, or L<∪|/routine/∪>), or with an equivalent ASCII
85+
version like L<(elem)|/routine/(elem)> or L<(^)|/routine/⊖>.
8786
8887
Most of the time, explicitly using C<Set> objects with these infixes is
8988
unnecessary. All the infix operators will work on any objects of type

0 commit comments

Comments
 (0)