From db3d26f4b9df7b58a319ffc6029682b24b8f42d7 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Wed, 23 Oct 2019 16:34:07 +0000 Subject: [PATCH] Fix typo in TryFrom docstring. --- src/edwards.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/edwards.rs b/src/edwards.rs index f0ddaa4..d29ca2f 100644 --- a/src/edwards.rs +++ b/src/edwards.rs @@ -355,7 +355,7 @@ impl CompressedEdwardsY { /// /// If the input `bytes` slice does not have a length of 32. For /// a panic-safe version of this API, see the implementation of - /// `TryFrom<&[u8]`. + /// `TryFrom<&[u8]>`. pub fn from_slice(bytes: &[u8]) -> CompressedEdwardsY { let mut tmp = [0u8; 32];