Skip to content

Commit eb918e2

Browse files
committed
Raises --> Increases
1 parent 291302b commit eb918e2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ rand = "0.8"
2020
[features]
2121
# Implements the `Error` trait from the standard library for the error types.
2222
std = []
23-
# promotes panics that only involve const generics into compile errors. Raises the MSRV of the crate to 1.79.0.
23+
# promotes panics that only involve const generics into compile errors. Increases the MSRV of the crate to 1.79.0.
2424
const_assert = []
2525
# Derives the `Serialize` and `Deserialize` traits from [`serde`](https://crates.io/crates/serde) for the `Primes` struct, as well as a few others.
2626
serde = ["dep:serde", "dep:serde_arrays"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ and more!
130130

131131
`std`: implements the `Error` trait from the standard library for the error types.
132132
`serde`: derives the `Serialize` and `Deserialize` traits from [`serde`](https://crates.io/crates/serde) for the `Primes` struct, as well as a few others.
133-
`const_assert`: promotes panics that only involve const generics into compile errors. Raises the MSRV of the crate to 1.79.0.
133+
`const_assert`: promotes panics that only involve const generics into compile errors. Increases the MSRV of the crate to 1.79.0.
134134

135135
## License
136136

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
//!
125125
//! `std`: implements the [`Error`](std::error::Error) trait from the standard library for the error types.
126126
//! `serde`: derives the [`Serialize`](serde::Serialize) and [`Deserialize`](serde::Deserialize) traits from [`serde`](https://docs.rs/serde/latest/serde/) for the [`Primes`] struct, as well as a few others.
127-
//! `const_assert`: promotes panics that only involve const generics into compile errors. Raises the MSRV of the crate to 1.79.0.
127+
//! `const_assert`: promotes panics that only involve const generics into compile errors. Increases the MSRV of the crate to 1.79.0.
128128
129129
#![forbid(unsafe_code)]
130130
#![cfg_attr(not(feature = "std"), no_std)]

0 commit comments

Comments
 (0)