Skip to content

Commit b3f6791

Browse files
committed
Correct phrasing
1 parent 1612532 commit b3f6791

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

text/0000-one-shot-hashing.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ compound types produce unique streams. For example, hashing `("ab", "c")` and
2020

2121
Hashing in one shot is possible even today with a custom hasher for constant-
2222
sized types. However, HashMap keys are often strings and slices. In order to
23-
allow fast, specialized hashing for more types, we need a clean way of
24-
handling single writes. Hashing of strings and slices performs two writes to a
25-
stream: one for a delimiter and the other for the content. We need a way of
26-
conveying the distinction between the delimiter and actual content. In the
23+
allow fast, specialized hashing for variable-length types, we need a clean way
24+
of handling single writes. Hashing of strings and slices performs two writes
25+
to a stream: one for a delimiter and the other for the content. We need a way
26+
of conveying the distinction between the delimiter and actual content. In the
2727
case of one-shot hashing, the delimiter can be ignored.
2828

2929
# Detailed design

0 commit comments

Comments
 (0)