From 8d6eaae299a5f4b8c2095617b909545af3f4626a Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Wed, 9 Sep 2020 14:04:15 +0300 Subject: [PATCH] Apply suggestions from code review Improve wording Co-authored-by: Rob Ede --- awc/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awc/src/lib.rs b/awc/src/lib.rs index b5c7c844c..743adcf9f 100644 --- a/awc/src/lib.rs +++ b/awc/src/lib.rs @@ -5,7 +5,7 @@ clippy::needless_doctest_main )] -//! `awc` is a HTTP/WebSocket Client library implemented atop of `actix` stack. +//! `awc` is a HTTP and WebSocket client library built using the Actix ecosystem. //! //! ## Making a GET request //! @@ -125,7 +125,7 @@ pub use self::sender::SendClientRequest; use self::connect::{Connect, ConnectorWrapper}; -/// An asynchronous web Client. +/// An asynchronous HTTP and WebSocket client. /// /// ## Examples ///