From 3d24aedfdece3254019e543160acc62e5d0dadb5 Mon Sep 17 00:00:00 2001 From: Brandur Date: Sat, 28 Dec 2019 14:34:49 -0800 Subject: [PATCH] Fix a few minor typos Fixes a few minor typos in the `README` (which were also showing up in the Rust and Crate docs): * purproses -> purposes * collissions -> collisions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 477836d..5af1700 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This hashing algorithm was extracted from the Rustc compiler. This is the same ## Disclaimer -It is **not a cryptographically secure** hash, so it is strongly recommended that you do not use this hash for cryptographic purproses. Furthermore, this hashing algorithm was not designed to prevent any attacks for determining collisions which could be used to potentially cause quadratic behavior in `HashMap`s. So it is not recommended to expose this hash in places where collissions or DDOS attacks may be a concern. +It is **not a cryptographically secure** hash, so it is strongly recommended that you do not use this hash for cryptographic purposes. Furthermore, this hashing algorithm was not designed to prevent any attacks for determining collisions which could be used to potentially cause quadratic behavior in `HashMap`s. So it is not recommended to expose this hash in places where collisions or DDOS attacks may be a concern. ## Examples