summaryrefslogtreecommitdiffstats
path: root/src/config/mimetype.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/mimetype.rs')
-rw-r--r--src/config/mimetype.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/config/mimetype.rs b/src/config/mimetype.rs
index 567dc2d..c36e812 100644
--- a/src/config/mimetype.rs
+++ b/src/config/mimetype.rs
@@ -46,7 +46,9 @@ impl JoshutoMimetypeEntry {
impl std::fmt::Display for JoshutoMimetypeEntry {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str(self.get_command()).unwrap();
- self.get_args().iter().for_each(|arg| write!(f, " {}", arg).unwrap());
+ self.get_args()
+ .iter()
+ .for_each(|arg| write!(f, " {}", arg).unwrap());
f.write_str("\t[").unwrap();
if self.get_fork() {