From 4a1695f719ffb5b906ecba4f22b8d25d8173c60e Mon Sep 17 00:00:00 2001 From: Jonathan Speiser Date: Wed, 11 Dec 2019 20:06:22 -0500 Subject: [PATCH] fixes missing import in example (#1210) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {