From db0502d3cd6363b293518c4e1f768ba79c303c41 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 15 Jul 2024 09:35:30 +1000 Subject: [PATCH] Use third person in rustdoc As is convention in this repo use the third person when describing the `sha256::HashEngine::from_midstate` function. --- hashes/src/sha256.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashes/src/sha256.rs b/hashes/src/sha256.rs index 2057fa057..472330fc2 100644 --- a/hashes/src/sha256.rs +++ b/hashes/src/sha256.rs @@ -76,7 +76,7 @@ impl HashEngine { } } - /// Create a new [`HashEngine`] from a [`Midstate`]. + /// Creates a new [`HashEngine`] from a [`Midstate`]. /// /// # Panics ///