aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2019-03-06 18:41:26 -0700
committerGitHub <noreply@github.com>2019-03-06 18:41:26 -0700
commitcae736bbe9c2150b6bab491b033ae9ae9da36b26 (patch)
tree5deaa5088bba39a9e59ddb5556af4a1442a64d3c
parentMerge pull request #7 from benbjohnson/sorted-map-builder (diff)
downloadpds-cae736bbe9c2150b6bab491b033ae9ae9da36b26.tar.gz
pds-cae736bbe9c2150b6bab491b033ae9ae9da36b26.tar.xz
README
Change hasher & comparer implementations to unexported in README.
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index c151641..5e7925f 100644
--- a/README.md
+++ b/README.md
@@ -249,7 +249,7 @@ type Hasher interface {
}
```
-Please see the `IntHasher`, `StringHasher`, or `ByteSliceHasher` for examples.
+Please see the internal `intHasher`, `stringHasher`, and `byteSliceHasher` for examples.
## Sorted Map
@@ -283,7 +283,7 @@ type Comparer interface {
}
```
-Please see the `IntComparer`, `StringComparer`, or `ByteSliceComparer` for examples.
+Please see the internal `intComparer`, `stringComparer`, and `byteSliceComparer` for examples.