Do trivial cleanup to module level docs

Make the module level docs uniform across the codebase (style copied
from rust-bitcoin).
This commit is contained in:
Tobin C. Harding 2022-11-24 11:13:45 +11:00
parent 4864a33a62
commit 27b3e92889
3 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
//! Structs and functionality related to the ECDSA signature algorithm.
//!
#[cfg(feature = "recovery")]
mod recovery;

View File

@ -4,6 +4,7 @@
//! points. The most common type of scalars are private keys. However not all scalars are private
//! keys. They can even be public *values*. To make handling them safer and easier this module
//! provides the `Scalar` type and related.
//!
use core::fmt;

View File

@ -1,4 +1,3 @@
//! # schnorrsig
//! Support for Schnorr signatures.
//!