1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-03-10 13:31:10 +00:00

Merge branch 'master' into master

This commit is contained in:
Nikolay Kim 2019-06-12 23:53:36 +06:00 committed by GitHub
commit 9fc7c8b1af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -205,7 +205,7 @@ where
///
/// // deserialize `Info` from request's path
/// fn index(folder: web::Path<Folder>) -> String {
/// format!("Selected folder: {}!", folder)
/// format!("Selected folder: {:?}!", folder)
/// }
///
/// fn main() {