From 991363a1042fe4046210cfe4356716976a10cb56 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 10 Feb 2021 12:12:03 +0000 Subject: [PATCH] consistent case s/web/Web --- README.md | 2 +- src/app.rs | 2 +- src/lib.rs | 4 ++-- src/scope.rs | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 68431096..ff375506 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
-

Actix web

+

Actix Web

Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust

diff --git a/src/app.rs b/src/app.rs index 1660c4b9..40362e0d 100644 --- a/src/app.rs +++ b/src/app.rs @@ -211,7 +211,7 @@ where /// /// Http service is any type that implements `HttpServiceFactory` trait. /// - /// Actix web provides several services implementations: + /// Actix Web provides several services implementations: /// /// * *Resource* is an entry in resource table which corresponds to requested URL. /// * *Scope* is a set of resources with common root path. diff --git a/src/lib.rs b/src/lib.rs index 46fbc293..7f096584 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,7 +30,7 @@ //! //! To get started navigating the API docs, you may consider looking at the following pages first: //! -//! * [App]: This struct represents an Actix web application and is used to +//! * [App]: This struct represents an Actix Web application and is used to //! configure routes and other common application settings. //! //! * [HttpServer]: This struct represents an HTTP server instance and is @@ -205,7 +205,7 @@ pub mod dev { } pub mod client { - //! Actix web async HTTP client. + //! Actix Web async HTTP client. //! //! ```rust //! use actix_web::client::Client; diff --git a/src/scope.rs b/src/scope.rs index d17acd84..d08c7813 100644 --- a/src/scope.rs +++ b/src/scope.rs @@ -206,11 +206,11 @@ where self } - /// Register http service. + /// Register HTTP service. /// /// This is similar to `App's` service registration. /// - /// Actix web provides several services implementations: + /// Actix Web provides several services implementations: /// /// * *Resource* is an entry in resource table which corresponds to requested URL. /// * *Scope* is a set of resources with common root path.