1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01: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() {