diff options
author | Alex Auvolat <alex@adnab.me> | 2021-12-09 23:38:56 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-12-09 23:38:56 +0100 |
commit | f7a5b29b719778974a6791d03b8c5eb2e5836355 (patch) | |
tree | a887ec309c49426676f6fd805f61a68e586fa1c2 /src/main.rs | |
parent | e0912dc5fe61839522db118a2dd2e06bb3c18d40 (diff) | |
download | tricot-f7a5b29b719778974a6791d03b8c5eb2e5836355.tar.gz tricot-f7a5b29b719778974a6791d03b8c5eb2e5836355.zip |
cargo clippy
Diffstat (limited to 'src/main.rs')
-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 ee95fa6..353af66 100644 --- a/src/main.rs +++ b/src/main.rs @@ -105,7 +105,7 @@ async fn main() { enable_compression: opt.enable_compression, compress_mime_types: opt .compress_mime_types - .split(",") + .split(',') .map(|x| x.to_string()) .collect(), }; |