diff options
-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. |