From 08d677fc9b978320eb3d5c261339f3d72f5f07f6 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 16 Oct 2022 18:15:47 +0100 Subject: [PATCH] sha1: fix typo (#424) --- sha1/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sha1/src/lib.rs b/sha1/src/lib.rs index e5fbf2a7b..38ddc4b51 100644 --- a/sha1/src/lib.rs +++ b/sha1/src/lib.rs @@ -33,12 +33,12 @@ //! //! This crate has been transferred to the RustCrypto organization and uses //! implementation previously published as the `sha-1` crate. The previous -//! zero dependencies version is now published as the [`sha1_smoll`] crate. +//! zero dependencies version is now published as the [`sha1_smol`] crate. //! //! [1]: https://en.wikipedia.org/wiki/SHA-1 //! [2]: https://sha-mbles.github.io/ //! [3]: https://github.com/RustCrypto/hashes -//! [`sha1_smoll`]: https://github.com/mitsuhiko/sha1-smol/ +//! [`sha1_smol`]: https://github.com/mitsuhiko/sha1-smol/ #![no_std] #![cfg_attr(docsrs, feature(doc_cfg))]