diff --git a/README.md b/README.md index ed333dc80..579e87e87 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Actix web is a simple, pragmatic and extremely fast web framework for Rust. ## Example ```rust -use actix_web::{get, App, HttpServer, Responder}; +use actix_web::{get, web, App, HttpServer, Responder}; #[get("/{id}/{name}/index.html")] async fn index(info: web::Path<(u32, String)>) -> impl Responder {