From 1105876423b0c53dd8f3ac10d9a30611a3e41b07 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Sat, 4 Nov 2023 08:50:46 +1100 Subject: [PATCH] Remove whitespace character from string No whitespace needed here, this is likely a typo. --- hashes/src/sha512_256.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashes/src/sha512_256.rs b/hashes/src/sha512_256.rs index 61ce8fe3..a796a0bc 100644 --- a/hashes/src/sha512_256.rs +++ b/hashes/src/sha512_256.rs @@ -16,7 +16,7 @@ use crate::{sha512, FromSliceError}; crate::internal_macros::hash_type! { 256, false, - "Output of the SHA512/256 hash function.\n\nSHA512/256 is a hash function that uses the sha512 alogrithm but it truncates the output to 256 bits. It has different initial constants than sha512 so it produces an entirely different hash compared to sha512. More information at . ", + "Output of the SHA512/256 hash function.\n\nSHA512/256 is a hash function that uses the sha512 alogrithm but it truncates the output to 256 bits. It has different initial constants than sha512 so it produces an entirely different hash compared to sha512. More information at .", "crate::util::json_hex_string::len_32" }