aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoe Taber <infogulch@gmail.com>2023-02-24 17:25:59 -0600
committerGitHub <noreply@github.com>2023-02-24 17:25:59 -0600
commit381774034dec1efb4fe1ab3134c48be5de5c6303 (patch)
treec6ef8e0107d5fec8e812b6be289145d790f1882c /README.md
parentMerge pull request #38 from BarrensZeppelin/master (diff)
downloadpds-381774034dec1efb4fe1ab3134c48be5de5c6303.tar.gz
pds-381774034dec1efb4fe1ab3134c48be5de5c6303.tar.xz
Fix typo in README NewMap -> NewSet
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 177d37d..4a7f0c5 100644
--- a/README.md
+++ b/README.md
@@ -291,7 +291,7 @@ wrapper around a `Map[T, struct{}]`.
Like Maps, Sets require a `Hasher` to hash keys and check for equality. There are built-in
hasher implementations for most primitive types such as `int`, `uint`, and
-`string` keys. You may pass in a `nil` hasher to `NewMap()` if you are using
+`string` keys. You may pass in a `nil` hasher to `NewSet()` if you are using
one of these key types.