Skip to content

Commit 68f94a4

Browse files
committed
Changed to bold. Closes #668 again
1 parent 3a90662 commit 68f94a4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/Language/setbagmix.pod6

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ L<MixHash|/type/MixHash>. Being unordered, these containers can be more
1212
efficient than L<Lists|/type/List> for looking up elements or dealing with
1313
repeated items.
1414
15-
If you want to get the contained objects (elements) I<without duplicates>
15+
If you want to get the contained objects (elements) B<without duplicates>
1616
and you only care I<whether> an element is in the collection or not,
17-
you can use a L<Set|/type/Set> or L<SetHash|/type/SetHash>. (If you want
17+
you can use a L<Set|/type/Set> or L<SetHash|/type/SetHash>. If you want
1818
to get rid of duplicates but still preserve order, take a look at the
19-
L<unique|/routine/unique> routine for L<List|/type/List>.)
19+
L<unique|/routine/unique> routine for L<List|/type/List>.
2020
2121
=begin comment
2222
=defn Set or SetHash
2323
Collection of distinct objects
2424
=end comment
2525
26-
If you want to keep track of the I<number of times each object appeared>,
26+
If you want to keep track of the B<number of times each object appeared>,
2727
you can use a L<Bag|/type/Bag> or L<BagHash|/type/BagHash>. In these
2828
Baggy containers each element has a weight (an unsigned integer)
2929
indicating the number of times the same object has been included in the
3030
collection. The types L<Mix|/type/Mix> and L<MixHash|/type/MixHash> are
31-
similar, but they also allow I<fractional weights>.
31+
similar, but they also allow B<fractional weights>.
3232
3333
=begin comment
3434
=defn Bag or BagHash

0 commit comments

Comments
 (0)