This commit is contained in:
dowwie 2019-06-13 09:00:45 -04:00
commit 73ae801a13
1 changed files with 1 additions and 1 deletions

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() {