1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00

fix path doc tests

This commit is contained in:
Nikolay Kim 2019-06-12 20:12:15 +06:00
parent e7ba67e1a8
commit c8118e8411

View File

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