mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
rename .to_async() to .to()
This commit is contained in:
parent
0b9e3d381b
commit
8683ba8bb0
25 changed files with 232 additions and 396 deletions
|
@ -29,7 +29,7 @@ Actix web is a simple, pragmatic and extremely fast web framework for Rust.
|
|||
```rust
|
||||
use actix_web::{web, App, HttpServer, Responder};
|
||||
|
||||
fn index(info: web::Path<(u32, String)>) -> impl Responder {
|
||||
async fn index(info: web::Path<(u32, String)>) -> impl Responder {
|
||||
format!("Hello {}! id:{}", info.1, info.0)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue