1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-26 03:14:43 +00:00

better examle in doc string

This commit is contained in:
Nikolay Kim 2018-06-02 16:03:23 -07:00
parent b799677532
commit ea018e0ad6

View file

@ -2,10 +2,10 @@
//! for Rust. //! for Rust.
//! //!
//! ```rust //! ```rust
//! use actix_web::{server, App, Path}; //! use actix_web::{server, App, Path, Responder};
//! # use std::thread; //! # use std::thread;
//! //!
//! fn index(info: Path<(String, u32)>) -> String { //! fn index(info: Path<(String, u32)>) -> impl Responder {
//! format!("Hello {}! id:{}", info.0, info.1) //! format!("Hello {}! id:{}", info.0, info.1)
//! } //! }
//! //!