Skip to content

Commit

Permalink
Added missing italics underscore back into file. (exercism#3781)
Browse files Browse the repository at this point in the history
  • Loading branch information
BethanyG committed Oct 12, 2024
1 parent c0ae896 commit 1df709f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exercises/concept/cater-waiter/.docs/introduction.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Sets

A [`set`][type-set] is a _mutable_ and unordered_ collection of [_hashable_][hashable] objects.

A [set][type-set] is a _mutable_ and _unordered_ collection of [_hasable_][hashable] objects.
Set members must be distinct — duplicate items are not allowed.
They can hold multiple different data types and even nested structures like a `tuple` of `tuples` — as long as all elements can be _hashed_.
Sets also come in an immutable [`frozensets`][type-frozenset] flavor.
Expand Down

0 comments on commit 1df709f

Please sign in to comment.