1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-21 02:50:10 +00:00

update doc string

This commit is contained in:
Nikolay Kim 2018-02-10 11:29:40 -08:00
parent 94c4053cb5
commit e3081306da

View file

@ -28,12 +28,6 @@ use super::settings::{ServerSettings, WorkerSettings};
/// An HTTP Server
///
/// `T` - async stream, anything that implements `AsyncRead` + `AsyncWrite`.
///
/// `A` - peer address
///
/// `H` - request handler
pub struct HttpServer<H> where H: IntoHttpHandler + 'static
{
h: Option<Rc<WorkerSettings<H::Handler>>>,