diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2019-03-06 18:41:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-06 18:41:26 -0700 |
commit | cae736bbe9c2150b6bab491b033ae9ae9da36b26 (patch) | |
tree | 5deaa5088bba39a9e59ddb5556af4a1442a64d3c | |
parent | Merge pull request #7 from benbjohnson/sorted-map-builder (diff) | |
download | pds-cae736bbe9c2150b6bab491b033ae9ae9da36b26.tar.gz pds-cae736bbe9c2150b6bab491b033ae9ae9da36b26.tar.xz |
README
Change hasher & comparer implementations to unexported in README.
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |