Skip to content

Commit

Permalink
docs(readme): remove unused import
Browse files Browse the repository at this point in the history
Closes #657
  • Loading branch information
seanmonstar committed Nov 17, 2015
1 parent 6560e9e commit cbe1176
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,11 @@ The documentation is located at [http://hyperium.github.io/hyper](http://hyperiu
```rust
extern crate hyper;

use std::io::Write;

use hyper::Server;
use hyper::server::Request;
use hyper::server::Response;
use hyper::net::Fresh;

fn hello(_: Request, res: Response<Fresh>) {
fn hello(_: Request, res: Response) {
res.send(b"Hello World!").unwrap();
}

Expand Down

0 comments on commit cbe1176

Please sign in to comment.