diff --git a/sha1-checked/src/lib.rs b/sha1-checked/src/lib.rs index 8d218943..ee4ead8d 100644 --- a/sha1-checked/src/lib.rs +++ b/sha1-checked/src/lib.rs @@ -129,9 +129,9 @@ impl Sha1 { pub enum CollisionResult { /// No collision. Ok(Output), - /// Collision occured, but was mititgated. + /// Collision occurred, but was mititgated. Mitigated(Output), - /// Collision occured, the hash is the one that collided. + /// Collision occurred, the hash is the one that collided. Collision(Output), }