Improve docs on tweak_add_check method

It is not immediately apparent what 'err == 1' means, one must determine
that the FFI function call returns 1 for success. We can help readers of
the code by adding a 'Return' section to the method documentation.

Add trailing full stop to method docs initial line also.
This commit is contained in:
Tobin Harding 2022-01-04 08:52:56 +11:00
parent fbc64c7725
commit ede114fb1a
1 changed files with 4 additions and 1 deletions

View File

@ -867,7 +867,7 @@ impl XOnlyPublicKey {
}
}
/// Verify that a tweak produced by `tweak_add_assign` was computed correctly
/// Verify that a tweak produced by `tweak_add_assign` was computed correctly.
///
/// Should be called on the original untweaked key. Takes the tweaked key and
/// output parity from `tweak_add_assign` as input.
@ -876,6 +876,9 @@ impl XOnlyPublicKey {
/// and checking equality. However, in future this API will support batch
/// verification, which is significantly faster, so it is wise to design
/// protocols with this in mind.
///
/// # Return
/// True if tweak and check is successful, false otherwise.
pub fn tweak_add_check<V: Verification>(
&self,
secp: &Secp256k1<V>,