Skip to content

Commit

Permalink
Correct phrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
pczarn committed Jul 4, 2016
1 parent 1612532 commit b3f6791
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions text/0000-one-shot-hashing.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ compound types produce unique streams. For example, hashing `("ab", "c")` and

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

# Detailed design
Expand Down

0 comments on commit b3f6791

Please sign in to comment.