fix guide example

This commit is contained in:
Nikolay Kim 2018-04-06 20:24:49 -07:00
parent a4b837a1c1
commit 7becb95a97
1 changed files with 1 additions and 1 deletions

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();
} }
``` ```