aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2021-12-30 13:34:04 -0500
committerJack O'Connor <[email protected]>2021-12-30 13:34:13 -0500
commitc7b5881928715429857d0b3e1bee7a4315cbf415 (patch)
tree5330df6c5bc3452ca37c961d65c33d4ce864ffe3
parent61d6621ba51acc5dcef970b6f63725ba11446606 (diff)
a few more comment tweaks
-rw-r--r--src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a380543..8082dbf 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -49,9 +49,9 @@
//! without NEON support.
//!
//! The `traits-preview` feature enables implementations of traits from the
-//! RustCrypto [`digest`] crate, and re-exports those crates as
+//! RustCrypto [`digest`] crate, and re-exports that crate as
//! `traits::digest`. However, the traits aren't stable, and they're expected to
-//! change in incompatible ways before those crates reach 1.0. For that reason,
+//! change in incompatible ways before that crate reaches 1.0. For that reason,
//! this crate makes no SemVer guarantees for this feature, and callers who use
//! it should expect breaking changes between patch versions. (The "-preview"
//! feature name follows the conventions of the RustCrypto [`signature`] crate.)
@@ -901,7 +901,7 @@ fn parent_node_output(
/// several commonly used traits from the
/// [`digest`](https://crates.io/crates/digest) crate. However, those
/// traits aren't stable, and they're expected to change in incompatible ways
-/// before those crates reach 1.0. For that reason, this crate makes no SemVer
+/// before that crate reaches 1.0. For that reason, this crate makes no SemVer
/// guarantees for this feature, and callers who use it should expect breaking
/// changes between patch versions.
///