Fixed typos/grammar mistakes

Co-authored-by: Tobin C. Harding <me@tobin.cc>
This commit is contained in:
Martin Habovštiak 2022-01-04 23:16:28 +01:00 committed by GitHub
parent 1bf05523f0
commit 94c55b4d09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -112,19 +112,19 @@
//! //!
//! ## Crate features/optional dependencies //! ## Crate features/optional dependencies
//! //!
//! The crate provides following opt-in Cargo features: //! This crate provides the following opt-in Cargo features:
//! //!
//! * `std` - use standard Rust library, enabled by default. //! * `std` - use standard Rust library, enabled by default.
//! * `alloc` - use the `alloc` standard Rust library to provide heap allocations. //! * `alloc` - use the `alloc` standard Rust library to provide heap allocations.
//! * `rand` - use `rand` library to provide random generator (to e.g. generate keys) //! * `rand` - use `rand` library to provide random generator (e.g. to generate keys).
//! * `rand-std` - use `rand` library with its `std` feature enabled. (Implies `rand`.) //! * `rand-std` - use `rand` library with its `std` feature enabled. (Implies `rand`.)
//! * `recovery` - enable functions that can compute the public key from signature //! * `recovery` - enable functions that can compute the public key from signature.
//! * `lowmemory` - optimize the library for low-memory environments //! * `lowmemory` - optimize the library for low-memory environments.
//! * `global-context` - enable use of global secp256k1 context. (Implies `std`, `rand-std` and //! * `global-context` - enable use of global secp256k1 context. (Implies `std`, `rand-std` and
//! `global-context-less-secure`.) //! `global-context-less-secure`.)
//! * `global-context-less-secure` - enables global context and opts-in to lower security. //! * `global-context-less-secure` - enables global context and opts-in to lower security.
//! * `serde` - implements serialization and deserialization for types in this crate using `serde` //! * `serde` - implements serialization and deserialization for types in this crate using `serde`.
//! * `bitcoin_hashes` - enables interaction with the `bitcoin-hashes` crate (e.g. conversions) //! * `bitcoin_hashes` - enables interaction with the `bitcoin-hashes` crate (e.g. conversions).
// Coding conventions // Coding conventions
#![deny(non_upper_case_globals)] #![deny(non_upper_case_globals)]