1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 17:33:59 +00:00

fix guide example

This commit is contained in:
Nikolay Kim 2018-04-06 20:24:49 -07:00
parent a4b837a1c1
commit 7becb95a97

View file

@ -37,7 +37,7 @@ fn main() {
.handler( .handler(
"/static", "/static",
fs::StaticFiles::new(".") fs::StaticFiles::new(".")
.show_folder_listing()) .show_files_listing())
.finish(); .finish();
} }
``` ```