diff --git a/README.md b/README.md index 684310961..ff3755062 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 1660c4b94..40362e0d3 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 46fbc2937..7f096584a 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 d17acd843..d08c78133 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.