From 26ac58b2bdec02e39176190adc7f3d76b5b24001 Mon Sep 17 00:00:00 2001 From: Harry Stern Date: Mon, 21 Jul 2025 12:02:59 -0400 Subject: [PATCH] Remove some comments referring to OpenSSL Signed-off-by: Harry Stern --- hyper-boring/src/lib.rs | 2 +- hyper-boring/src/v0.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hyper-boring/src/lib.rs b/hyper-boring/src/lib.rs index d206eb6b..1822e135 100644 --- a/hyper-boring/src/lib.rs +++ b/hyper-boring/src/lib.rs @@ -1,4 +1,4 @@ -//! Hyper SSL support via OpenSSL. +//! Hyper SSL support via BoringSSL. #![warn(missing_docs)] #![cfg_attr(docsrs, feature(doc_auto_cfg))] diff --git a/hyper-boring/src/v0.rs b/hyper-boring/src/v0.rs index 07597498..03368d32 100644 --- a/hyper-boring/src/v0.rs +++ b/hyper-boring/src/v0.rs @@ -21,7 +21,7 @@ use std::{fmt, io}; use tokio::io::{AsyncRead, AsyncWrite, ReadBuf}; use tower_layer::Layer; -/// A Connector using OpenSSL to support `http` and `https` schemes. +/// A Connector using BoringSSL to support `http` and `https` schemes. #[derive(Clone)] pub struct HttpsConnector { http: T,