aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2018-02-15 21:33:39 -0800
committerSteven Fackler <[email protected]>2018-02-15 21:33:39 -0800
commitaf4832e14531f6a3f5776effc7e9942c56350874 (patch)
treed27e008040245e83359ee9692d20383f2298e972
parentAdd more session cache support (diff)
downloadrust-openssl-af4832e14531f6a3f5776effc7e9942c56350874.tar.xz
rust-openssl-af4832e14531f6a3f5776effc7e9942c56350874.zip
Doc tweak
-rw-r--r--openssl/src/ssl/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/ssl/mod.rs b/openssl/src/ssl/mod.rs
index 7308535b..a589d6a3 100644
--- a/openssl/src/ssl/mod.rs
+++ b/openssl/src/ssl/mod.rs
@@ -1166,7 +1166,7 @@ impl SslContextBuilder {
/// Sets the callback which is called when new sessions are negotiated.
///
- /// This is used by clients to implement session caching. While for TLSv1.2 the session is
+ /// This can be used by clients to implement session caching. While in TLSv1.2 the session is
/// available to access via [`SslRef::session`] immediately after the handshake completes, this
/// is not the case for TLSv1.3. There, a session is not generally available immediately, and
/// the server may provide multiple session tokens to the client over a single session. The new