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:
parent
4864a33a62
commit
27b3e92889
|
@ -1,4 +1,5 @@
|
||||||
//! Structs and functionality related to the ECDSA signature algorithm.
|
//! Structs and functionality related to the ECDSA signature algorithm.
|
||||||
|
//!
|
||||||
|
|
||||||
#[cfg(feature = "recovery")]
|
#[cfg(feature = "recovery")]
|
||||||
mod recovery;
|
mod recovery;
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
//! points. The most common type of scalars are private keys. However not all scalars are private
|
//! 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
|
//! keys. They can even be public *values*. To make handling them safer and easier this module
|
||||||
//! provides the `Scalar` type and related.
|
//! provides the `Scalar` type and related.
|
||||||
|
//!
|
||||||
|
|
||||||
use core::fmt;
|
use core::fmt;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
//! # schnorrsig
|
|
||||||
//! Support for Schnorr signatures.
|
//! Support for Schnorr signatures.
|
||||||
//!
|
//!
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue