From cbe1176f2c395f36a1539fdafb2906f2d0b61a12 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 17 Nov 2015 10:45:44 -0800 Subject: [PATCH] docs(readme): remove unused import Closes #657 --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index df8c1956..9894fd0c 100644 --- a/README.md +++ b/README.md @@ -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) { +fn hello(_: Request, res: Response) { res.send(b"Hello World!").unwrap(); }