aboutsummaryrefslogtreecommitdiff
path: root/reference_impl
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2020-01-02 15:55:54 -0500
committerJack O'Connor <[email protected]>2020-01-04 10:30:59 -0500
commit5b4f79fc7f49b47c1580e2e51aeaacbc2c4e6dd4 (patch)
tree99ba738a68c83adad5c24e64d38b009fb7dc215a /reference_impl
parent86aaa1306418c012dd51c6ce9e5ef9086cdee95f (diff)
comment punctuation nit
Diffstat (limited to 'reference_impl')
-rw-r--r--reference_impl/reference_impl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/reference_impl/reference_impl.rs b/reference_impl/reference_impl.rs
index d97256e..7f5d7f1 100644
--- a/reference_impl/reference_impl.rs
+++ b/reference_impl/reference_impl.rs
@@ -302,7 +302,7 @@ impl Hasher {
// child off the stack, merge it with `new_cv`, and overwrite `new_cv`
// with the result. After all these merges, push the final value of
// `new_cv` onto the stack. The number of completed subtrees is given
- // by the number of trailing 0 bits in the new total number of chunks.
+ // by the number of trailing 0-bits in the new total number of chunks.
while total_chunks & 1 == 0 {
new_cv = parent_cv(self.pop_stack(), new_cv, self.key, self.flags);
total_chunks >>= 1;