Skip to content

Commit 02019dc

Browse files
paolobarbolinictz
authored andcommitted
Fix typo in Verifier::{with_provider, get_provider} docs
1 parent 9c4c17d commit 02019dc

File tree

1 file changed

+2
-2
lines changed
  • rustls-platform-verifier/src/verification

1 file changed

+2
-2
lines changed

rustls-platform-verifier/src/verification/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ pub const ALLOWED_EKUS: &[&str] = &["1.3.6.1.5.5.7.3.1"];
8888
impl Verifier {
8989
/// Chainable setter to configure the [`CryptoProvider`] for this `Verifier`.
9090
///
91-
/// This will be used instead of the rustls processs-default `CryptoProvider`, even if one has
91+
/// This will be used instead of the rustls process-default `CryptoProvider`, even if one has
9292
/// been installed.
9393
pub fn with_provider(mut self, crypto_provider: Arc<CryptoProvider>) -> Self {
9494
self.set_provider(crypto_provider);
@@ -97,7 +97,7 @@ impl Verifier {
9797

9898
/// Configures the [`CryptoProvider`] for this `Verifier`.
9999
///
100-
/// This will be used instead of the rustls processs-default `CryptoProvider`, even if one has
100+
/// This will be used instead of the rustls process-default `CryptoProvider`, even if one has
101101
/// been installed.
102102
pub fn set_provider(&mut self, crypto_provider: Arc<CryptoProvider>) {
103103
self.crypto_provider = crypto_provider.into();

0 commit comments

Comments
 (0)