docs: Fix a variable name for bucket in Dashtable section (#80)

In the the `dashtable.svg` diagram, the last segment is denoted by `N` while `K` is used for buckets (like bucket1, bucket2, ..., bucketK).
This commit is contained in:
TAKAHASHI Shuuji 2022-06-02 20:02:18 +09:00 committed by GitHub
parent 7ff6e47332
commit 8570a12d81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,7 +45,7 @@ Similarly to a classic hashtable, dashtable (DT) also holds an array of pointers
![Dashtable Diagram](./dashtable.svg)
In the diagram above you can see how dashtable looks like. Each segment is comprised of `N` buckets. For example, in our implementation a dashtable has 60 buckets per segment (it's a compile-time parameter that can be configured).
In the diagram above you can see how dashtable looks like. Each segment is comprised of `K` buckets. For example, in our implementation a dashtable has 60 buckets per segment (it's a compile-time parameter that can be configured).
### Segment zoom-in