1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-08-02 02:35:04 +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(
"/static",
fs::StaticFiles::new(".")
.show_folder_listing())
.show_files_listing())
.finish();
}
```