diff options
author | cyqsimon <28627918+cyqsimon@users.noreply.github.com> | 2022-07-22 16:37:06 +0000 |
---|---|---|
committer | cyqsimon <28627918+cyqsimon@users.noreply.github.com> | 2022-07-22 16:37:06 +0000 |
commit | 00f84202dfada0d6dac087cda762e8a6b5454d17 (patch) | |
tree | fda37c565c52b5ce0f2fdbfc6d48bd38b7ba57fd /src | |
parent | Apply suggestions from code review (diff) | |
download | miniserve-00f84202dfada0d6dac087cda762e8a6b5454d17.tar.gz miniserve-00f84202dfada0d6dac087cda762e8a6b5454d17.zip |
Remove trailing space to appease `cargo fmt`
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index e4f48f8..b46262d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -290,7 +290,7 @@ fn configure_app(app: &mut web::ServiceConfig, conf: &MiniserveConfig) { let dir_service = || { let mut files = actix_files::Files::new("", &conf.path); - // Use specific index file if one was provided. + // Use specific index file if one was provided. if let Some(ref index_file) = conf.index { files = files.index_file(index_file.to_string_lossy()); // Handle SPA option. |