Skip to content

Commit

Permalink
Fixed typo.md (#3794)
Browse files Browse the repository at this point in the history
Fixed minor typo hasable -> hashable
  • Loading branch information
wolmoe authored Oct 20, 2024
1 parent c230448 commit 1d2c981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/cater-waiter/.docs/introduction.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Sets


A [set][type-set] is a _mutable_ and _unordered_ collection of [_hasable_][hashable] objects.
A [set][type-set] is a _mutable_ and _unordered_ collection of [_hashable_][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 1d2c981

Please sign in to comment.