diff --git a/docs/book/src/quinn/certificate.md b/docs/book/src/quinn/certificate.md index 5796ce72f..81d63c8a5 100644 --- a/docs/book/src/quinn/certificate.md +++ b/docs/book/src/quinn/certificate.md @@ -16,7 +16,7 @@ quinn = "*" rustls = { version = "*", features = ["dangerous_configuration", "quic"] } ``` -Then, you can skip the certificate validation on the client by implementing [ServerCertVerifier][ServerCertVerifier] and let it assert verification for any server. +Then, allow the client to skip the certificate validation by implementing [ServerCertVerifier][ServerCertVerifier] and letting it assert verification for any server. ```rust // Implementation of `ServerCertVerifier` that verifies everything as trustworthy.