1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00

consistent case s/web/Web

This commit is contained in:
Rob Ede 2021-02-10 12:12:03 +00:00
parent a290e58982
commit 991363a104
No known key found for this signature in database
GPG key ID: C2A3B36E841A91E6
4 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
<div align="center"> <div align="center">
<h1>Actix web</h1> <h1>Actix Web</h1>
<p> <p>
<strong>Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust</strong> <strong>Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust</strong>
</p> </p>

View file

@ -211,7 +211,7 @@ where
/// ///
/// Http service is any type that implements `HttpServiceFactory` trait. /// 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. /// * *Resource* is an entry in resource table which corresponds to requested URL.
/// * *Scope* is a set of resources with common root path. /// * *Scope* is a set of resources with common root path.

View file

@ -30,7 +30,7 @@
//! //!
//! To get started navigating the API docs, you may consider looking at the following pages first: //! 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. //! configure routes and other common application settings.
//! //!
//! * [HttpServer]: This struct represents an HTTP server instance and is //! * [HttpServer]: This struct represents an HTTP server instance and is
@ -205,7 +205,7 @@ pub mod dev {
} }
pub mod client { pub mod client {
//! Actix web async HTTP client. //! Actix Web async HTTP client.
//! //!
//! ```rust //! ```rust
//! use actix_web::client::Client; //! use actix_web::client::Client;

View file

@ -206,11 +206,11 @@ where
self self
} }
/// Register http service. /// Register HTTP service.
/// ///
/// This is similar to `App's` service registration. /// 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. /// * *Resource* is an entry in resource table which corresponds to requested URL.
/// * *Scope* is a set of resources with common root path. /// * *Scope* is a set of resources with common root path.