From 494242231e877d27e830b1598484d53cd98f88fb Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 1 Oct 2016 19:51:56 +0200 Subject: [PATCH] Doc fix --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 17797ef1..9e3c4499 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,10 +42,10 @@ //! # SSL/TLS //! //! This crate supports TLS secured connections. The `TlsMode` enum is passed to connection methods -//! and indicates if the connection will not, may not, or must be secured by TLS. The TLS -//! implementation is pluggable through the `TlsHandshake` trait. Implementations for OpenSSL and -//! OSX's Secure Transport are provided behind the `with-openssl` and `with-security-framework` -//! feature flags respectively. +//! and indicates if the connection will not, may, or must be secured by TLS. The TLS implementation +//! is pluggable through the `TlsHandshake` trait. Implementations for OpenSSL and OSX's Secure +//! Transport are provided behind the `with-openssl` and `with-security-framework` feature flags +//! respectively. //! //! ## Examples //!