actix-http: Remove non-relevant comment from README.md

This commit is contained in:
Igor Aleksanov 2020-09-20 18:17:09 +03:00
parent 1596893ef7
commit bbacfdca90
1 changed files with 1 additions and 2 deletions

View File

@ -13,12 +13,11 @@ Actix http
## Example ## Example
```rust ```rust
// see examples/framed_hello.rs for complete list of used crates.
use std::{env, io}; use std::{env, io};
use actix_http::{HttpService, Response}; use actix_http::{HttpService, Response};
use actix_server::Server; use actix_server::Server;
use futures::future; use futures_util::future;
use http::header::HeaderValue; use http::header::HeaderValue;
use log::info; use log::info;